This is just a simple version of GNU/wc command clone, written in Rust.
For rust beginners, feel free to look this project for practice :)
(Using Clap-v4)
What I had archived are as follows: - Support for reading multiple files and calculating the result in parrllel - Pretty tabled output - Colorful progress bar for reading files (It is useful when reading large file) - Completions for common shells (Look here for more information)
Note:
It is super faster and prettier than wc
command when reading a large of big files. (Thanks to rayon
)
To put it another word, it is slower when reading a small numbers of small files.
For the Chinese, you could view my blog about using clap-rs to write this project
bash
git clone https://github.com/jedsek/rust-wc
cd rust-wc
cargo build --release
The path of command is rust-wc/target/release/rwc
, you could copy/move it to other place
or just cargo run --release -- <args>
You could download the binary file published in release-site
``` $ rwc all src/* Please waiting...
Reading files / Getting content from stdin: [0s][100%] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 153B Done! [0s][100%] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 126B Done! [0s][100%] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 1.65 KiB Done! [0s][100%] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 5.43 KiB Done! Calculating... ┌───────────────┬───────┬───────┬───────┬───────┬────────────────────────────┐ │ Path │ Bytes │ Chars │ Words │ Lines │ Maximum line width (Bytes) │ ├───────────────┼───────┼───────┼───────┼───────┼────────────────────────────┤ │ ./src/calc.rs │ 5562 │ 5562 │ 450 │ 181 │ 110 │ ├───────────────┼───────┼───────┼───────┼───────┼────────────────────────────┤ │ ./src/main.rs │ 153 │ 153 │ 18 │ 8 │ 34 │ ├───────────────┼───────┼───────┼───────┼───────┼────────────────────────────┤ │ ./src/cli.rs │ 1694 │ 1694 │ 198 │ 63 │ 127 │ ├───────────────┼───────┼───────┼───────┼───────┼────────────────────────────┤ │ ./src/lib.rs │ 126 │ 126 │ 14 │ 6 │ 72 │ └───────────────┴───────┴───────┴───────┴───────┴────────────────────────────┘
```
``` $ rwc -h A GNU/wc clone written in rust, which is faster when reading a large of big files
Usage: rwc <--bytes|--chars|--words|--lines|--longest-line> [PATH]...
rwc [PATH]...
Commands: all Enabled all available options help Print this message or the help of the given subcommand(s)
Arguments:
[PATH]... The path(s) you should provide
Note when without FILE or it is -
, read standard input (stop inputting by CTRL-D
)
The file read from stdin will prefix with Input/
, and the other will prefix with ./
[default: -]
Options: -b, --bytes Print the byte counts -c, --chars Print the character counts -w, --words Print the word counts -l, --lines Print the line counts -L, --longest-line Print the maximum line width (Chars) -h, --help Print help information -V, --version Print version information ```