home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Freeware 25 / FreelogHS25.iso / Dessin / ArtOfIllusion2.2.1 / ArtOfIllusion.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.