Implementation of a Linux Shell only using system calls in C++
Implements the following commands:
- background execution using "&"
- input and output redirection using "<" and ">" both to a terminal or to a file.
- top,ps and other such commands by using fork and exec system calls.
- environ to change environment variables.
- cd,ls,pwd,clear and exit all using system calls.