wc 命令返回某个文件的行数、词数和字符数。
wc
$ wc demo.txt 7459 15915 398400 demo.txt
上面代码中,7459 是行数,15915 是词数,398400 是字符数。
7459
15915
398400