This website requires JavaScript.
Explore
Help
Sign In
ctome
/
tldr
mirror of
https://github.com/CrimsonTome/tldr.git
Watch
1
Star
0
Fork
You've already forked tldr
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
17b990f4e4
tldr
/
pages
/
common
/
wc.md
217 B
Raw
Blame
History
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}}