This is a simple shell implementation written in [C programming language]. It provides basic functionality for executing commands, managing processes, and interacting with the user.
- Command Execution: Executes commands entered by the user.
- Built-in Commands: Supports a few built-in commands such as
cd
,exit
, etc. - Input/Output Redirection: Allows redirection of input and output using
<
,>
,>>
. - Piping: Supports piping of commands using
|
.