Files
cproof-plugins/whoami.py
James Booth 14b5b3ac23 Tidied python plugins
Use private naming convention
Move local callback functions to top
2013-09-20 00:49:13 +01:00

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)