This project involves the development of our own simple shell
The shell is a command-line interpreter. It is both a scripting and interactive command language. It is used by the opertating system to control the execution of the system using shell scripts.
You can install the simple shell by cloning this repo:
$ git clone https://github.com/kehindeadebisi/simple_shell.git
Next, compile the files with this command:
$ gcc -Wall -Werror -Wextra -pedantic *.c -o hsh
finally, run the shell:
$ ./hsh
-Kehinde Rahimot Adebisi - Development and Documentation