Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 542 Bytes

File metadata and controls

10 lines (9 loc) · 542 Bytes

Implemtation of a simple shell in C programming This is a simple shell implementation written in C. It provides a basic command-line interface where users can enter commands and execute them.

Features of the simple shell include ##Reads commands from the user and executes them ##Supports command-line arguments ##Handles basic error checking for command execution ##Uses fork() to create a child process for command execution ##Waits for the child process to complete using waitpid() ##Runs in an infinite loop until the user exits