首页 > 代码库 > Linux命令——wc

Linux命令——wc

wc(word count)命令的功能为统计指定文件中的字节数、字数、行数, 并将统计结果显示输出顯示!!


用法:wc [OPTION]... [FILE]...


    -c 统计字节数。 

    -l 统计行数。 

    -w 统计字数

    -m 統計字符數

    -L 选项,统计文件中最长的行的长度。


例:

[root@localhost ~]# wc  /etc/fstab

 15  78 779 /etc/fstab

[root@localhost ~]# wc -c /etc/fstab

779 /etc/fstab

[root@localhost ~]# wc -l /etc/fstab

15 /etc/fstab

[root@localhost ~]# wc -w /etc/fstab

78 /etc/fstab

[root@localhost ~]# wc -m /etc/fstab

779 /etc/fstab

[root@localhost ~]# wc -L /etc/fstab

93 /etc/fstab



本文出自 “10858195” 博客,请务必保留此出处http://10868195.blog.51cto.com/10858195/1945058

Linux命令——wc