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 / pwd.bsh < prev    next >
Text File  |  2005-05-23  |  138b  |  9 lines

  1. /**
  2.     Print the BeanShell working directory.  This is the cwd obeyed by all the 
  3.     unix-like bsh commands.
  4. */
  5. pwd() {
  6.     print( bsh.cwd );
  7. }
  8.  
  9.