diff options
Diffstat (limited to 'shell/bin/pwd.php')
-rw-r--r-- | shell/bin/pwd.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shell/bin/pwd.php b/shell/bin/pwd.php new file mode 100644 index 0000000..2b43d00 --- /dev/null +++ b/shell/bin/pwd.php @@ -0,0 +1,5 @@ +<?php +function main($args) { + echo getcwd()."\n"; +} + |