A shell in C language similar to bash shell to execute user commands having interactive and batch mode
-
Compile the code using the following command to create the executable
gcc my_shell.c -o my_shell
-
./my shell
will run the program in interactive mode -
./my shell commands.txt
will run the program in batch mode
Find here the detailed problem statement