wc(word count)命令的功能为统计指定文件中的字节数、字数、行数, 并将统计结果显示输出顯示!!
用法:wc [OPTION]... [FILE]...
-c 统计字节数。
-l 统计行数。
-w 统计字数
-m 統計字符數
-L 选项,统计文件中最长的行的长度。
例:
[[email protected] ~]# wc /etc/fstab
15 78 779 /etc/fstab
[[email protected] ~]# wc -c /etc/fstab
779 /etc/fstab
[[email protected] ~]# wc -l /etc/fstab
15 /etc/fstab
[[email protected] ~]# wc -w /etc/fstab
78 /etc/fstab
[[email protected] ~]# wc -m /etc/fstab
779 /etc/fstab
[[email protected] ~]# wc -L /etc/fstab
93 /etc/fstab
时间: 2024-10-10 17:12:26