标签:
wc - print newline, word, and byte counts for each file
为文件打印行数,字符数,字节数
参数:
-l 仅列出行
-w 仅列出多少字(英文单字)
-m 多少字符
-b 多少字节
-L 打印最长的行
说明:为什么会有仅呢,因为默认wc=wc -lwm
[root@BASE test]# cat /etc/passwd|wc 35 56 1650 [root@BASE test]# cat /etc/passwd|wc -l 35 [root@BASE test]# cat /etc/passwd|wc -w 56 [root@BASE test]# cat /etc/passwd|wc -m 1650 [root@BASE test]# cat /etc/passwd|wc -c 1650 [root@BASE test]# cat /etc/passwd|wc -L 89 [root@BASE test]#
标签:
原文地址:http://www.cnblogs.com/along1226/p/4967588.html