Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 493 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 493 Bytes

TermSim

A simple, easy to integrate terminal-like command processor system.

Includes 7 example commands:

  • cd
  • ls
  • pwd
  • ontop
  • clear
  • savelog
  • exit

Usage:

<command> -<flag>:<argument>

Examples:

$ cd -i:c:\windows
$ cd -i:"c:\with spaces"
$ cd -i:..
$ cd -help
$ ls
$ pwd
$ ontop
$ clear
$ savelog
$ exit

  • Commands may also be combined with pipes.

ex. clear | pwd | cd -i:c:\windows | ls | cd -i:.. | ls