wc 输出每个文件中的字符数、单词数及行数

wc [options][files]
$ wc -l file  输出file中的行数
$ wc -w file  输出file中的单词数
$ wc -c file  输出file中的字符数
$ wc -lc test.txt   输出test.txt中的行数和字符数。
$ wc -lw test.txt   输出test.txt中的行数和单词数。

你可能感兴趣的:(wc 输出每个文件中的字符数、单词数及行数)