JQTerminal is an application that emulates a Unix terminal. It emulates as much as possible of the way a unix shell works. To that end it implements some of the commands that you will find in a typicall Unix shell such as cat, man and echo (go to point 5 for a comprehensive list). The commands already written are not hardcoded into the main logic and instead implemented in the form of plugins. It is possible to write your own commands
You can, as long as you respect the license.
As stated in the source files, JQTerminal is under the BSD-2-Clause License. It's a fairly permissive license. It basically says you can do anything you want with the program provided you respect the following conditions:
A copy of the license can be found in the OSI website.
You are wellcome to do so. JQTerminal was designed with the goal of being extensible in mind.
man - Find information about a specific command.
clear - Clear the console.
ls - List directory contents.
cat - Concatenate files and print on the standard output.
(concatenation remains unimplemented)
echo - Print messages on the standard output (supports environment variables).
shutdown / reboot - Destroy the console.
export - export an environment variable
color - change the terminal's background color
You might want to check out the tutorial pages.
That depends on your definition of interesting. I made a page inspired on the iconic "hacking" scene of Jurassic Park using this terminal. You might find that amusing.
GitHub has a nice feature called "issues". You can use it to report any problem with the application. If it's really an issue, I'll start working on it as soon as I can.