Basic shell made in C for the Operating System course.
- Clone the repository:
git clone https://github.com/TheFluffyBoi2/C-Shell.git
- Compile the code using GCC:
gcc Shell.c -o shell
- Run the shell:
./shell
- Basic shell commads:
ls -l path_name
- Piping:
cat example.txt | sort - Redirection:
cat example.txt > result.txt
