You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The entry point for your shell implementation is in cmd/myshell/main.go.
Ensure you have go (1.19) installed locally
Run ./your_program.sh to run your program, which is implemented in
cmd/myshell/main.go.
About
A shell is a command-line interface that executes commands and manages processes. In this challenge, I 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.