CommandLine is a mock command shell application. Commands are entered on the command line a processed, similar to unix and linux systems.
For example, entering whois yahoo.com will return the whois information for yahoo.com.
$ whois yahoo.com
Press "Fire" to execute a command.
You can alias commands to make the easier to enter.
$ alias w whois
$ w yahoo.com
The commands supported so far are:
whois [ <hostname>|<ip> ]
ping [ <hostname>|<ip> ]
memstat
mimes
alias <alias> <command>
date
uname
I was created from the w!k! example. You can strip out a lot of the src code.