2013-12-25 11:17:18 +00:00
|
|
|
# wc
|
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
> Count lines, words, and bytes.
|
2021-04-01 16:54:26 +01:00
|
|
|
> More information: <https://www.gnu.org/software/coreutils/wc>.
|
2013-12-25 11:17:18 +00:00
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
- Count all lines in a file:
|
2013-12-25 11:17:18 +00:00
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
`wc --lines {{path/to/file}}`
|
2013-12-25 11:17:18 +00:00
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
- Count all words in a file:
|
2016-02-10 17:46:05 +00:00
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
`wc --words {{path/to/file}}`
|
2016-02-10 17:46:05 +00:00
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
- Count all bytes in a file:
|
2013-12-25 11:17:18 +00:00
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
`wc --bytes {{path/to/file}}`
|
2013-12-25 11:17:18 +00:00
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
- Count all characters in a file (taking multi-byte characters into account):
|
2013-12-25 11:17:18 +00:00
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
`wc --chars {{path/to/file}}`
|
2020-05-29 12:01:37 +01:00
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
- Count all lines, words and bytes from `stdin`:
|
2020-05-29 12:01:37 +01:00
|
|
|
|
|
|
|
`{{find .}} | wc`
|
2021-10-13 18:32:18 +01:00
|
|
|
|
|
|
|
- Count the length of the longest line in number of characters:
|
|
|
|
|
2021-11-09 07:48:09 +00:00
|
|
|
`wc --max-line-length {{path/to/file}}`
|