diff options
Diffstat (limited to 'shell/bin/whoami.php')
-rw-r--r-- | shell/bin/whoami.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/bin/whoami.php b/shell/bin/whoami.php index 7e560f2..fd7afa1 100644 --- a/shell/bin/whoami.php +++ b/shell/bin/whoami.php @@ -1,7 +1,7 @@ <?php class p_whoami extends prog { public static function main($args, $env) { - echo get_current_user(); + echo get_current_user()."\n"; } } |