- Run
make
cmd to runmakefile
. - Use
./seashell
to initiate the shell. - Entry point exists in
shell.c
.
- It's been a while since playing with pointers and pointer to pointer, so had to take extra care of that.
- Got to know that
strcat
is not supported for pointers. I madeconcat
to concatenate two strings pointed by pointers.