["Build a Shell" Challenge]
In this challenge, I will build my own POSIX compliant shell that's capable of interpreting shell commands, running external programs and builtin commands like cd, pwd, echo and more. Along the way, I'll learn about shell command parsing, REPLs, builtin commands, and more.
- Ensure you have
dotnet (9.0)installed locally - Run
./shell.shto run this program, which is implemented insrc/main.cs.