- This is the official readme file of the shell project carried out by Muritadhor Arowolo and Qudus Shuaib. This project started on the 11th of September, 2023 by 2:47pm (WAT).
- The shell project is all about creating a simple version of the bash shell that runs in a Linux environment. It's currently able to execute binaries like
ls
and shell builtins likeexit
,cd
,env
,setenv
unsetenv
. - You can test the shell by running the executable
./hsh
after compiling with: gcc -Wall -Werror -Wextra -pedantic -std=gnu89 *.c -o hsh
.