A minimal Unix shell.
- Rust 99.9%
| src | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| README.md | ||
| test.sh | ||
Shell
A minimal Unix shell written in Rust.
Features ✅
- Builtins:
- help
- cd
- exit
- Quoted strings
TODO 🚧
- Builtins:
- history
- External command execution
- PATH lookup
- Pipes
- Input/output redirection (<, >, >>)
- Background processes (&)
- Environment variables (export, unset, $VAR)
- Signal handling (Ctrl+C, Ctrl+D)
- Command history (Readline)