Minimal clone of the Unix wc tool.
- Line counting
- Byte counting
- Word counting
- Simple subcommand interface using
clap
rswc list <file>
rswc count <file>
rswc words <file>cargo build --releasecargo run -- list <file>
cargo run -- count <file>
cargo run -- words <file>