Linux wc 命令用于统计指定文件中的字节数、字数、行数,并将统计结果显示输出。
若不指定文件名称、或是所给予的文件名为”-“,则wc指令会从标准输入设备读取数据。
语法格式:wc [参数] [文件]
常用参数:
-w | 统计字数,或–words:只显示字数。一个字被定义为由空白、跳格或换行字符分隔的字符串 |
-c | 统计字节数,或–bytes或–chars:只显示Bytes数 |
-l | 统计行数,或–lines:只显示列数 |
-m | 统计字符数 |
-L | 打印最长行的长度 |
–help | 显示帮助信息 |
–version | 显示版本信息 |
参考实例
默认情况下,wc将统计指定文件的行数、字数,以及字节数
[root@bunian ~]# cat bunian.txt
hello bunian
hello bunian
hello bunian
hello bunian
hello bunian
[root@bunian ~]# wc bunian.txt
5 10 65 bunian.txt
统计字数:
[root@bunian ~]# wc -w bunian.txt
10 bunian.txt
统计字节数:
[root@bunian ~]# wc -c bunian.txt
65 bunian.txt
统计字符数:
[root@bunian ~]# wc -m bunian.txt
65 bunian.txt
统计行数:
[root@bunian ~]# wc -l bunian.txt
5 bunian.txt
打印最长行的长度:
[root@bunian ~]# wc -L bunian.txt
12 bunian.txt
© 版权声明
本站文章由不念博客原创,未经允许严禁转载!
THE END