10 lines
257 B
Python
10 lines
257 B
Python
import prof
|
|
import getpass
|
|
|
|
def _cmd_whoami():
|
|
me = getpass.getuser()
|
|
prof.cons_show(me)
|
|
|
|
def prof_init(version, status):
|
|
prof.register_command("/whoami", 0, 0, "/whoami", "Call shell whoami command.", "Call shell whoami command.", _cmd_whoami)
|