linux命令 - wc

功能

word, line, character, and byte count
单词数,行数,字符数和字节数统计

记忆

wc - word count

示例文本

twinkle twinkle little star
how i wonder what you are
up above the world so high
like a diamond in the sky

用法

  • wc -l file - 统计行数
$ wc -l file
4 file
  • wc -c file - 统计字节数
$ wc -l file
107 file
  • wc -m file - 统计字符数
$ wc -m file
107 file
  • wc -w file - 统计单词数
$ wc -w file
22 file

你可能感兴趣的:(linux命令 - wc)