Simple shell is a project of end semester at Holberton School, it helps to explore, manipulate and create basic shell program.
You can install simple shell by cloning this repository:
https://github.com/ggirlk/simple_shell
gcc -Wall -Werror -Wextra -pedantic *.c -o hsh
$ ./hsh
($) /bin/ls
hsh main.c shell.c
($)
($) exit
$
$ echo "/bin/ls" | ./hsh
hsh main.c shell.c test_ls_2
$
$ cat test_ls_2
/bin/ls
/bin/ls
$
$ cat test_ls_2 | ./hsh
hsh main.c shell.c test_ls_2
hsh main.c shell.c test_ls_2
$
By Khouloud & Yassine Software engineers at HolbertonSchool®️