2021-10-13 18:32:18 +01:00
|
|
|
# wc
|
|
|
|
|
|
|
|
> Count lines, words, or bytes.
|
2024-01-31 10:20:27 +00:00
|
|
|
> More information: <https://keith.github.io/xcode-man-pages/wc.1.html>.
|
2021-10-13 18:32:18 +01:00
|
|
|
|
|
|
|
- Count lines in file:
|
|
|
|
|
2021-11-04 10:06:14 +00:00
|
|
|
`wc -l {{path/to/file}}`
|
2021-10-13 18:32:18 +01:00
|
|
|
|
|
|
|
- Count words in file:
|
|
|
|
|
2021-11-04 10:06:14 +00:00
|
|
|
`wc -w {{path/to/file}}`
|
2021-10-13 18:32:18 +01:00
|
|
|
|
|
|
|
- Count characters (bytes) in file:
|
|
|
|
|
2021-11-04 10:06:14 +00:00
|
|
|
`wc -c {{path/to/file}}`
|
2021-10-13 18:32:18 +01:00
|
|
|
|
|
|
|
- Count characters in file (taking multi-byte character sets into account):
|
|
|
|
|
2021-11-04 10:06:14 +00:00
|
|
|
`wc -m {{path/to/file}}`
|
2021-10-13 18:32:18 +01:00
|
|
|
|
2023-08-09 06:29:02 +01:00
|
|
|
- Use `stdin` to count lines, words and characters (bytes) in that order:
|
2021-10-13 18:32:18 +01:00
|
|
|
|
|
|
|
`{{find .}} | wc`
|