A shell utility CLI application done in Rust
Reference: https://app.codecrafters.io/courses/shell
- Execute it in any terminal
cargo run
$ echo hello world
hello world
$ exit
$ exit 1
$ pwd
/home/user
$ cd ./src
$ pwd
/home/user/stc
$ type echo
echo is a shell builtin
$ hello_name Doe
Hello, Doe!
- Better error handling
- Unit tests
- Other commands
- Interface (w/ Tauri maybe)
- Accept shell operators like & && |