Shows your username, the time you logged on and your IP address. Other sessions than yours are not displayed.
Command line interface
Syntax
- $ who
Arguments
This command takes no arguments.
Example

who.js
- /**
- * Who
- **/
- TinyShell.plugins.who = new Class({
- description: "Show detailed user information",
- run : function(terminal, args) {
- terminal.print(terminal.user+"\tpts/1\t<?=date("Y-m-d H:i")?> (<?=gethostbyaddr($_SERVER["REMOTE_ADDR"])?>)");
- terminal.resume();
- }
- });