home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Shareware / Comunicatii / advwebrank / awr.msi / disk1.cab / bsh_1.2b6.jar / bsh / commands / pwd.bsh < prev    next >
Encoding:
Text File  |  2002-05-31  |  138 b   |  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.