C program which runs customised command prompt
Use gcc Shell.c -lreadline
to compile the program.
Example commands:
ls
touch new_file.txt && ls
-> executes both commands sequentiallytouch new_file.txt &&& ls
-> executes both commands parallelyls>outpu.txt
-> stores result of the command into the file
Any command can be executed in this custom shell.
Use exit
to exit the shell program.