31.每日一個Linux命令----wc

描述:Word Count命令的功能爲統計指定文件中的字節數、字數、行數,並將統計結果顯示輸出spa

用法: wc [option] 文件code

選項:字符串

-c 統計字節數。io

-l 統計行數。test

-m 統計字符數。這個標誌不能與 -c 標誌一塊兒使用。統計

-w 統計字數。一個字被定義爲由空白、跳格或換行字符分隔的字符串。文件

-L 打印最長行的長度。co

-help 顯示幫助信息字符

--version 顯示版本信息版本

實例:

統計test.txt的行數、字符數、字節數:

[root@localhost ~]# wc test.txt 
 2  8 18 test.txt

統計字節數、字符數、字數:
 

[root@localhost ~]# wc -c test.txt 
18 test.txt
[root@localhost ~]# wc -m test.txt 
18 test.txt
[root@localhost ~]# wc -w test.txt 
8 test.txt
相關文章
相關標籤/搜索