Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 402 Bytes

README.md

File metadata and controls

9 lines (8 loc) · 402 Bytes

Linux-Shell

Implementation of a Linux Shell only using system calls in C++

Implements the following commands:

  1. background execution using "&"
  2. input and output redirection using "<" and ">" both to a terminal or to a file.
  3. top,ps and other such commands by using fork and exec system calls.
  4. environ to change environment variables.
  5. cd,ls,pwd,clear and exit all using system calls.