summaryrefslogtreecommitdiff
path: root/shell/bin/whoami.php
blob: fd7afa1db9ec691d321d9b4447d518c41421bd59 (plain)
1
2
3
4
5
6
7
<?php
class p_whoami extends prog {
	public static function main($args, $env) {
		echo get_current_user()."\n";
	}
}