- wc命令用于统计指定文本的行数、字数、字节数
- 格式:wc [参数] 文本
[root@localhost test]# wc test.txt
test.txt
[root@localhost test]# cat -n test.txt
linux is good
python is good
hello world hello world
hello linux hello python
[root@localhost test]#
- 参数解释
-l 只显示行数
-w 只显示单词书
-c 只显示字节数