home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / multimedia / ppsee / PPSeeSetup.exe / lib / bsh-commands-2.0b4.jar / bsh / commands / getBshPrompt.bsh < prev    next >
Text File  |  2005-05-23  |  532b  |  25 lines

  1. /**
  2.     Get the value to display for the bsh interactive prompt.
  3.     This command checks for the variable bsh.prompt and uses it if set.
  4.     else returns "bsh % "
  5.     <p/>
  6.     Remember that you can override bsh commands simply by defining the method
  7.     in your namespace. e.g. the following method displays the current working
  8.     directory in your prompt:
  9.     <p/>
  10.     <pre>
  11.     String getBshPrompt() {
  12.         return bsh.cwd + " % ";
  13.     }
  14.     </pre>
  15. */
  16.  
  17. String getBshPrompt() 
  18. {
  19.     if ( bsh != void && bsh.prompt != void )
  20.         return bsh.prompt;
  21.     else
  22.         return "bsh % ";
  23. }
  24.  
  25.