A simple shell for Linux environment that supports built-in and external commands.
List of build-in commands:
- history - keeps track of recently executed commands. The history is not preserved between runs.
- cd
- pwd
- exit
- jobs
- fg
List of features:
- Output redirection via ">".
- Command piping via "|". Multiple piping is supported.
- Background execution of jobs via "&".
- All of the items above can be used together in the following order: piping then output redirection then background execution.