码迷,mamicode.com
首页 > 其他好文 > 详细

wc命令

时间:2018-07-09 12:44:05      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:test   word   常用   white   lse   rom   统计字符数   option   normal   

wc命令:

print newline, word, and byte counts for each file统计文件的行数、字符数和字节数。

使用者权限:

所有使用者

语法格式:

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

wc [OPTION]... --files0-from=F

常用选项:

-c:统计字节数

-w:统计字数

-l:统计行数

-m:统计字符数

实例

[root@www1 ~]# wc test666.txt
 19  31 107 test666.txt
[root@www1 ~]# wc -l test666.txt
19 test666.txt
[root@www1 ~]# wc -m test666.txt
107 test666.txt
[root@www1 ~]# wc -w test666.txt
31 test666.txt
[root@www1 ~]# wc -c test666.txt
107 test666.txt
[root@www1 ~]#


wc命令

标签:test   word   常用   white   lse   rom   统计字符数   option   normal   

原文地址:http://blog.51cto.com/12107790/2139058

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