码迷,mamicode.com
首页 > 系统相关 > 详细

Linux命令:wc

时间:2016-10-11 21:58:58      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:wc linux

wc命令简介:

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


1.命令格式:

wc [OPTION]... [FILE]...

2.命令功能:

统计指定文件中的字节数、字数、行数,并将统计结果显示输出。该命令统计指定文件中的字节数、字数、行数。如果没有给出文件名,则从标准输入读取。wc同时也给出所指定文件的总统计数。


3.命令参数:

-c 统计字节数。

-l 统计行数。

-m 统计字符数。这个标志不能与 -c 标志一起使用。

-w 统计字数。一个字被定义为由空白、跳格或换行字符分隔的字符串。

-L 打印最长行的长度。

-help 显示帮助信息

--version 显示版本信息


4.使用实例:

 实例1:查看文件的字节数、字数、行数

  命令:

wc test.txt

  输出:

     [root@localhost test]# cat test.txt 

     hnlinux

     peida.cnblogs.com

     ubuntu

     ubuntu linux

     redhat

     Redhat

     linuxmint

     [root@localhost test]# wc test.txt         Word Count

      7  8 70 test.txt

     [root@localhost test]# wc -l test.txt       统计行数 --lines

     test.txt

     [root@localhost test]# wc -c test.txt       统计字节数 --bytes

     70 test.txt

     [root@localhost test]# wc -w test.txt        统计字数 --words

     test.txt

     [root@localhost test]# wc -m test.txt        统计字符数 --chars

     70 test.txt

     [root@localhost test]# wc -L test.txt     打印最长行的长度 --max-line-length

     17 test.txt

  说明:

  7     8      70     test.txt

 行数 单词数 字节数   文件名


  实例2:用wc命令怎么做到只打印统计数字不打印文件名

   命令:

   输出:

     [root@localhost test]# wc -l test.txt 

     test.txt

     [root@localhost test]# cat test.txt |wc -l

     7

   说明:

 使用管道线,这在编写shell脚本时特别有用。


  实例3:用来统计当前目录下的文件数

   命令:

 ls -l | wc -l


---END---

Linux命令:wc

标签:wc linux

原文地址:http://wangfx.blog.51cto.com/1697877/1860838

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!