wc命令用來打印文件的文本行數、單詞數、字節數等(print the number of newlines, words, and bytes in files)。在Windows的Word中有個「字數統計」的工具,能夠幫咱們把選中範圍的字數、字符數統計出來。Linux下的wc命令能夠實現這個 功能。使用vi打開文件的時候,底下的信息也會顯示行數和字節數。shell
格式:wc -l <file>工具
打印指定文件的文本行數。(l=小寫L)編碼
如下參數可組合使用。spa
參數:-c, --bytes[喝小酒的網摘]http://blog.hehehehehe.cn/a/17301.htm
打印字節數(print the byte counts)
參數:-m, --chars
打印字符數(print the character counts)
參數:-l, --lines
打印行數(print the newline counts)
參數:-L, --max-line-length
打印最長行的長度(print the length of the longest line)
參數:-w, --words
打印單詞數(print the word counts).net
[root@jfht ~]# wc /etc/passwd
46 66 2027 /etc/passwd命令行
行數 單詞數 字節數 文件名
[root@jfht ~]#code
[root@jfht ~]# wc -l /etc/passwd
46 /etc/passwd
[root@jfht ~]# wc -cmlwL /etc/passwd
46 66 2027 2027 74 /etc/passwd
[root@jfht ~]# wc -cmlLw /etc/passwd
46 66 2027 2027 74 /etc/passwd
[root@jfht ~]# wc -wcmlL /etc/passwd
46 66 2027 2027 74 /etc/passwd
[root@jfht ~]#htm
問題來了:從上面的命令行執行結果來看,wc的輸出數據的順序與的幾個參數的順序好像沒有關係?!blog
使用管道線。這在編寫shell腳本時特別有用。get
[root@jfht ~]# wc -l /etc/passwd
46 /etc/passwd
[root@jfht ~]# cat /etc/passwd | wc -l
46
[root@jfht ~]#
執行環境是中文編碼的。
[root@jfht ~]# echo $LANG
zh_CN.GB18030
中文編碼文件ehr_object.gv,UTF8編碼的文件ehr_object_utf8.gv。
[root@jfht ~]# file ehr_object.gv ehr_object_utf8.gv
ehr_object.gv: ISO-8859 text
ehr_object_utf8.gv: UTF-8 Unicode text
[root@jfht ~]#
[root@jfht ~]# wc ehr_object.gv ehr_object_utf8.gv
11 105 830 ehr_object.gv
wc: ehr_object_utf8.gv:4: 無效或不完整的多字節字符或寬字符
11 105 866 ehr_object_utf8.gv
22 210 1696 總計
[root@jfht ~]#
[root@jfht ~]# cat test.txt
你好Word
Linux
[root@jfht ~]# wc test.txt
3 2 16 test.txt
行數 單詞數 字節數 文件名 [root@jfht ~]#