https://github.com/eggplants/rust-cmd-practice
https://github.com/eggplants/rust-cmd-practice
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eggplants/rust-cmd-practice
- Owner: eggplants
- Created: 2024-02-11T13:18:24.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-06-01T17:01:11.000Z (about 1 year ago)
- Last Synced: 2025-07-23T18:52:12.352Z (about 1 year ago)
- Language: Rust
- Size: 46.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust-cmd-practice
[](
) [](
)
My practice codes while reading [Command-Line Rust](https://www.oreilly.com/library/view/command-line-rust/9781098109424/) in [Japanese Edition](https://www.oreilly.co.jp//books/9784814400584/).
## TODO
- [x] hello
- [x] echo
- [x] cat
- [x] head
- [ ] wc
- [ ] uniq
- [ ] find
- [ ] cut
- [ ] grep
- [ ] comm
- [ ] tail
- [ ] fortune
- [ ] cal
- [ ] ls
## Environment
```shellsession
$ rustup show
Default host: x86_64-unknown-linux-gnu
rustup home: /home/eggplants/.rustup
installed toolchains
--------------------
stable-x86_64-unknown-linux-gnu (default)
1.70-x86_64-unknown-linux-gnu
1.71-x86_64-unknown-linux-gnu
active toolchain
----------------
stable-x86_64-unknown-linux-gnu (default)
rustc 1.76.0 (07dca489a 2024-02-04)
```