Move OS X and Linux pages into pages/common

This commit is contained in:
Zlatan Vasović
2014-01-29 22:58:24 +01:00
parent 003659bb99
commit 521ebdc1da
21 changed files with 1 additions and 1 deletions

16
common/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}}`