Shows your username – I know this plugin makes no sense.
Command line interface
Syntax
- $ whoami
Arguments
This command takes no arguments.
Example

whoami.js
- /**
- * Who am I?
- **/
- TinyShell.plugins.whoami = new Class({
- description: "Show username",
- run : function(terminal) {
- terminal.print(terminal.user);
- terminal.resume();
- }
- });