Amid68 / Build-a-Simple-Command-Line-Shell

Implement a basic Unix-like shell that can execute commands, handle piping, redirection, background processes, and manage signals.
MIT License
0 stars 0 forks source link

Build the Shell Loop (REPL - Read, Eval, Print Loop) #3

Open Amid68 opened 5 days ago

Amid68 commented 5 days ago

This is the core structure that will read user input, interpret commands, and execute them.

Amid68 commented 4 days ago

I've completed the initial REPL implementation. Next, I'll refactor the code into multiple files and add more error handling.