Linux系統中的wc(Word Count)命令的功能爲統計指定文件中的字節數、字數、行數,並將統計結果顯示輸出。code
wc [-clw][--help][--version][文件...]
利用wc指令咱們能夠計算文件的Byte數、字數、或是列數,若不指定文件名稱、或是所給予的文件名爲"-",則wc指令會從標準輸入設備讀取數據。進程
參數 | 描述 |
---|---|
-c | 統計字節數。 |
-l | 統計行數。 |
-m | 統計字符數。這個標誌不能與 -c 標誌一塊兒使用。 |
-w | 統計字數。一個字被定義爲由空白、跳格或換行字符分隔的字符串。 |
-L | 打印最長行的長度。 |
-help | 顯示幫助信息 |
--version | 顯示版本信息 |
命令:字符串
wc 1.log
輸出:io
[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
說明:table
3 3 9 1.log 表明1.log文件的行數爲三、單詞數三、字節數9class
命令:test
cat 1.log |wc -l
輸出:統計
[root@localhost test]# wc -l 1.log 3 1.log [root@localhost test]# cat 1.log |wc -l 3
說明:數據
使用管道線,便可作到這一點tab
命令:
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
說明:
若是當前目錄下有子目錄,則數量爲文件及子目錄數量(不包含子目錄下面的文件數量)