/jEdit/tags/jedit-4-2-pre4/bsh/commands/pwd.bsh
# · Unknown · 8 lines · 7 code · 1 blank · 0 comment · 0 complexity · 1407c6eb8a089c9f77a325c2d5191efd MD5 · raw file
- /**
- Print the BeanShell working directory. This is the cwd obeyed by all the
- unix-like bsh commands.
- */
- pwd() {
- print( bsh.cwd );
- }