2013-12-25 11:17:18 +00:00
|
|
|
# wc
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Count words, bytes, or lines.
|
2013-12-25 11:17:18 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Count lines in file:
|
2013-12-25 11:17:18 +00:00
|
|
|
|
|
|
|
`wc -l {{file}}`
|
|
|
|
|
2016-02-10 17:46:05 +00:00
|
|
|
- Count words in file:
|
|
|
|
|
|
|
|
`wc -w {{file}}`
|
|
|
|
|
|
|
|
- Count characters (bytes) in file:
|
2013-12-25 11:17:18 +00:00
|
|
|
|
|
|
|
`wc -c {{file}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Count characters in file (taking multi-byte character sets into account):
|
2013-12-25 11:17:18 +00:00
|
|
|
|
|
|
|
`wc -m {{file}}`
|