simple shell made in C
https://github.com/ronitrajfr/rsh.git
A minimal shell implementation in C, supporting basic built-in commands and external program execution.
$ prompt for user input.exit [code]: Exit the shell with an optional exit code.echo [args...]: Print arguments to the terminal.type [command]: Identify if a command is a shell builtin or an external executable.PATH.git clone https://github.com/ronitrajfr/rsh.git
cd rsh
gcc -o rsh src/main.c
./rsh
$ echo Hello World
Hello World
$ type echo
echo is a shell builtin
$ type ls
ls is /bin/ls
$ exit 0
See LICENSE.