This is a custom shell that emulates sh (not bash) Compilation command
gcc -Wall -Werror -Wextra -pedantic -std=gnu89 *.c -o hsh
Run the shell ./hsh arguments
#example:
/bin/ls
exit 98
- exit: Usage --> "exit" OR "exit status". When more than one additinal arguments are found, the others are ignored.
- env: working, but prints in different order than the real sh env builtin