1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 04:02:09 +02:00
tldr/pages/common/wc.md
2019-11-14 17:58:45 +01:00

272 B

wc

Count lines, words, or bytes.

  • Count lines in file:

wc -l {{file}}

  • Count words in file:

wc -w {{file}}

  • Count characters (bytes) in file:

wc -c {{file}}

  • Count characters in file (taking multi-byte character sets into account):

wc -m {{file}}