Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 394 Bytes

File metadata and controls

29 lines (22 loc) · 394 Bytes

rwc

Count the number of lines, words and bytes from files or stdin

Usage: rwc [OPTIONS] [FILE]...

Arguments:
  [FILE]...  

Options:
  -l             Count lines
  -w             Count words
  -b             Count bytes
  -h, --help     Print help
  -V, --version  Print version

Example:

rwc Cargo.toml

Cargo.toml

Line count: 7
Word count: 46
Byte count: 392
---