Merge pull request #767 from igorshubovych/wc

wc: add words example, update characters example
waldyrious/alt-syntax
Felix Yan 2016-02-11 11:12:31 +08:00
commit d632b20eee
1 changed files with 5 additions and 1 deletions

View File

@ -6,7 +6,11 @@
`wc -l {{file}}`
- Count bytes in file:
- Count words in file:
`wc -w {{file}}`
- Count characters (bytes) in file:
`wc -c {{file}}`