tldr/pages/osx/wc.md

25 lines
470 B
Markdown
Raw Normal View History

# wc
> Count lines, words, or bytes.
> More information: <https://www.gnu.org/software/coreutils/wc>.
- Count lines in file:
2021-11-04 10:06:14 +00:00
`wc -l {{path/to/file}}`
- Count words in file:
2021-11-04 10:06:14 +00:00
`wc -w {{path/to/file}}`
- Count characters (bytes) in file:
2021-11-04 10:06:14 +00:00
`wc -c {{path/to/file}}`
- Count characters in file (taking multi-byte character sets into account):
2021-11-04 10:06:14 +00:00
`wc -m {{path/to/file}}`
- Use standard input to count lines, words and characters (bytes) in that order:
`{{find .}} | wc`