Add doc for wc(1)

waldyrious/alt-syntax
Pranav Raja 2013-12-25 22:17:18 +11:00
parent 5e9c4d4d44
commit f56257d249
1 changed files with 16 additions and 0 deletions

16
osx/wc.md Normal file
View File

@ -0,0 +1,16 @@
# wc
> Count words, bytes, or lines
- count lines in file
`wc -l {{file}}`
- count bytes in file
`wc -c {{file}}`
- count characters in file (taking multi-byte character sets into account)
`wc -m {{file}}`