https://github.com/varunu28/rwc
:crab: Rust implementation of Linux word count utility
https://github.com/varunu28/rwc
Last synced: 8 months ago
JSON representation
:crab: Rust implementation of Linux word count utility
- Host: GitHub
- URL: https://github.com/varunu28/rwc
- Owner: varunu28
- Created: 2023-07-22T19:19:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-23T22:44:50.000Z (about 2 years ago)
- Last Synced: 2025-01-01T23:11:23.490Z (9 months ago)
- Language: Rust
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rwc
Rust implementation of Linux word count utilityInternally the CLI is built using the [clap crate](https://docs.rs/clap/latest/clap/index.html)
## How to build the project?
```
cargo build
alias rwc='./target/debug/rwc'
```## Usage for 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
```