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

Linux之wc命令

时间:2015-11-15 23:01:43      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

wc - print newline, word, and byte counts for each file

   为文件打印行数,字符数,字节数

 

参数:

  -l  仅列出行

  -w  仅列出多少字(英文单字)

  -m  多少字符

  -b  多少字节

  -L 打印最长的行

说明:为什么会有仅呢,因为默认wc=wc -lwm

[root@BASE test]# cat /etc/passwd|wc
     35      56    1650
[root@BASE test]# cat /etc/passwd|wc -l
35
[root@BASE test]# cat /etc/passwd|wc -w
56
[root@BASE test]# cat /etc/passwd|wc -m
1650
[root@BASE test]# cat /etc/passwd|wc -c
1650
[root@BASE test]# cat /etc/passwd|wc -L
89
[root@BASE test]# 

 

Linux之wc命令

标签:

原文地址:http://www.cnblogs.com/along1226/p/4967588.html

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