Latest commit
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Process to run simple shell: 1)open this directry in wsl 2) run gcc -o simpleshell simpleshell.c 3) run ./simpleshell 4) now the simple shell is up and running Commands apart from given in assignment which will also work 1) whoami 2) pwd Command which will not work 1) sleep 5 & Reason : Supporting this command would require parallel parent child execution in which child runs in background , which was beyond the scope of the assignment. Contributions : We worked on the project together from start to finish, discussing and building each part side by side. Anshika Handled the initial parsing of the command , int main function and history functionality and Somil Handled the processing of command , run single and piped command function . Overall, it was a collaborative effort with both of us contributing throughout. Github Link : https://github.com/SomilGupta98/Simple_Shell/