linux每日命令(36):wc命令

聽風。發表於2018-12-06

Linux系統中的wc(Word Count)命令的功能為統計指定檔案中的位元組數、字數、行數,並將統計結果顯示輸出。

一.命令格式

wc [-clw][--help][--version][檔案...]

二.命令功能

利用wc指令我們可以計算檔案的Byte數、字數、或是列數,若不指定檔名稱、或是所給予的檔名為"-",則wc指令會從標準輸入裝置讀取資料。

三.命令引數

引數 描述
-c 統計位元組數。
-l 統計行數。
-m 統計字元數。這個標誌不能與 -c 標誌一起使用。
-w 統計字數。一個字被定義為由空白、跳格或換行字元分隔的字串。
-L 列印最長行的長度。
-help 顯示幫助資訊
--version 顯示版本資訊

四. 使用例項

1. 查詢指定程式

命令:

wc  1.log 

輸出:

[root@localhost test]# cat 1.log 
a
bc
def
[root@localhost test]# wc  1.log 
3 3 9 1.log
[root@localhost test]# wc -c 1.log 
9 1.log
[root@localhost test]# wc -l 1.log 
3 1.log
[root@localhost test]# wc -m 1.log 
9 1.log
[root@localhost test]# wc -w 1.log 
3 1.log
[root@localhost test]# wc -L 1.log 
3 1.log

說明:

3 3 9 1.log 代表1.log檔案的行數為3、單詞數3、位元組數9

2. 用wc命令只列印統計數字不列印檔名

命令:

cat 1.log |wc -l

輸出:

[root@localhost test]# wc -l 1.log 
3 1.log
[root@localhost test]# cat 1.log |wc -l
3

說明:

使用管道線,即可做到這一點

3. 統計當前目錄下的檔案數

命令:

ls | wc -l

輸出:

[root@localhost test]# ls
1.log  2.log  2.log.back  3.log  4.log
[root@localhost test]# ls | wc -l
5

說明:

如果當前目錄下有子目錄,則數量為檔案及子目錄數量(不包含子目錄下面的檔案數量)

相關文章