wc命令

三、wc命令
wc命令用于统计文件中的行数、单词数和字符数等信息。
$wc names
5 5 27 names
wc的命令的输出包含三个数字,分别是文件names中的行数、单词数和字符数。
wc -l 显示文件中的行数
wc -w 显示文件中的单词数
wc -c 显示文件中的字符数
$wc -l names
5
$wc -w names
5
$wc -c names
27

       -c, --bytes
              print the byte counts

       -m, --chars
              print the character counts

       -l, --lines
              print the newline counts

       -L, --max-line-length
              print the length of the longest line

       -w, --words
              print the word counts

       --help display this help and exit

你可能感兴趣的:(character,byte,newline)