Rust implementation of Linux word count utility
Internally the CLI is built using the clap crate
cargo build
alias rwc='./target/debug/rwc'
// With no flags set and default output
rwc --name data.txt
// Setting flags
rwc --name data.txt -cwlb
// Setting flags with descriptive names
rwc --name data.txt --line --byte --word --character