2013-12-25 22:17:18 +11:00
|
|
|
# wc
|
|
|
|
|
2021-11-09 08:48:09 +01:00
|
|
|
> Count lines, words, and bytes.
|
2025-01-18 18:45:33 +05:30
|
|
|
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/wc-invocation.html>.
|
2013-12-25 22:17:18 +11:00
|
|
|
|
2021-11-09 08:48:09 +01:00
|
|
|
- Count all lines in a file:
|
2013-12-25 22:17:18 +11:00
|
|
|
|
2025-03-13 04:41:47 +02:00
|
|
|
`wc {{[-l|--lines]}} {{path/to/file}}`
|
2013-12-25 22:17:18 +11:00
|
|
|
|
2021-11-09 08:48:09 +01:00
|
|
|
- Count all words in a file:
|
2016-02-10 19:46:05 +02:00
|
|
|
|
2025-03-13 04:41:47 +02:00
|
|
|
`wc {{[-w|--words]}} {{path/to/file}}`
|
2016-02-10 19:46:05 +02:00
|
|
|
|
2021-11-09 08:48:09 +01:00
|
|
|
- Count all bytes in a file:
|
2013-12-25 22:17:18 +11:00
|
|
|
|
2025-03-13 04:41:47 +02:00
|
|
|
`wc {{[-c|--bytes]}} {{path/to/file}}`
|
2013-12-25 22:17:18 +11:00
|
|
|
|
2021-11-09 08:48:09 +01:00
|
|
|
- Count all characters in a file (taking multi-byte characters into account):
|
2013-12-25 22:17:18 +11:00
|
|
|
|
2025-03-13 04:41:47 +02:00
|
|
|
`wc {{[-m|--chars]}} {{path/to/file}}`
|
2020-05-29 13:01:37 +02:00
|
|
|
|
2021-11-09 08:48:09 +01:00
|
|
|
- Count all lines, words and bytes from `stdin`:
|
2020-05-29 13:01:37 +02:00
|
|
|
|
|
|
|
`{{find .}} | wc`
|
2021-10-14 01:32:18 +08:00
|
|
|
|
|
|
|
- Count the length of the longest line in number of characters:
|
|
|
|
|
2025-03-13 04:41:47 +02:00
|
|
|
`wc {{[-L|--max-line-length]}} {{path/to/file}}`
|