A basic implemenation of command-line shell in C.
- Clone the repository:
git clone [email protected]:twelvebytes/shell.git
- Navigate to the project directory:
cd shell/
- Build
make
To run the project, use the following command:
./shell
- Allows to exit from the command
- Changes the directory
- Allows to execute commands
- If a command not found , it searches under the PATH environment variable and executes it
make clean