UNPKG

214 BMarkdownView Raw
1# wc
2
3> Count words, bytes, or lines
4
5- count lines in file
6
7`wc -l {{file}}`
8
9- count bytes in file
10
11`wc -c {{file}}`
12
13- count characters in file (taking multi-byte character sets into account)
14
15`wc -m {{file}}`
16