wc:显示文件的行数,字数,字符数(按顺序依次显示)
[root@localhost 桌面]# cat westos
hello
[root@localhost 桌面]# wc westos
1 1 6 westos
字符数为6,是因为后面有换行府,也算一个
统计文件的行数: wc -l
[root@localhost 桌面]# wc -l westos
2 westos
统计文件单词数:wc -w (w意为word)
字符串中间没有任何符号即为单词。例如将文件“hello”变为“he llo”即为两个单词i
[root@localhost 桌面]# wc -w westos
2 westos
统计文件字节数;wc -c
原文件为“he llo”,加空格共七个字节。
[root@localhost 桌面]# wc -c westos
7 westos
统计文件字符数;wc -m
[root@localhost 桌面]# wc -m westos
7 westos
中文不同,将文本内容改为“你”,则:
[root@localhost 桌面]# wc -m westos
2 westos
[root@localhost 桌面]# wc -c westos
4 westos
中文一个字占三个字节。