This project is a simple UNIX command interpreter written in C. The shell works like a typical command line interface, receiving commands from the user and executing them.
- GCC compiler, preferably version 11.3.0 or later.
- CMake, preferably version 3.10 or later.
-
Clone the repository to your local machine:
git clone https://github.com/sumatoken/simple_shell.git
-
Navigate to the project directory:
cd simple_shell
-
Create a new directory for the build files:
mkdir build && cd build
-
Run CMake to generate the build files:
cmake ..
-
Run make to build the project:
make
-
Run the shell:
./shell
*Mohammed Bermime