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