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