#wc --help
用法:wc [選項(xiàng)]... [文件]...
或:wc [選項(xiàng)]... --files0-from=F
輸出每個(gè)指定文件的行數(shù)、單詞計(jì)數(shù)和字節(jié)數(shù),如果指定了
多于一個(gè)文件,繼續(xù)給出所有相關(guān)數(shù)據(jù)的總計(jì)。如果沒(méi)有指定
文件,或者文件為"-"linux命令大全,則從標(biāo)準(zhǔn)輸入讀取數(shù)據(jù)。
-c, --bytes 輸出字節(jié)數(shù)統(tǒng)計(jì)
-m, --chars 輸出字符數(shù)統(tǒng)計(jì)
-l, --lines 輸出行數(shù)統(tǒng)計(jì)
--files0-from=文件 從指定文件讀取以NUL 終止的名稱(chēng),如果該文件被
指定為"-"則從標(biāo)準(zhǔn)輸入讀文件名
-L, --max-line-length 顯示最長(zhǎng)行的長(zhǎng)度
-w, --words 顯示單詞計(jì)數(shù)
--help 顯示此幫助信息并退出
--version 顯示版本信息并退出
請(qǐng)向bug-coreutils@gnu.org 報(bào)告wc 的錯(cuò)誤
GNU coreutils 項(xiàng)目主頁(yè):<;
GNU 軟件一般性幫助:<;
請(qǐng)向<; 報(bào)告wc 的翻譯錯(cuò)誤
要獲取完整文檔,請(qǐng)運(yùn)行:info coreutils 'wc invocation'
實(shí)例1:查看文件的字節(jié)數(shù)、字?jǐn)?shù)、行數(shù)
[root@localhosttest]#cattest.txt
hnlinux
peida.cnblogs.com
ubuntu
ubuntulinux
redhat
Redhat
linuxmint
[root@localhosttest]#wctest.txt
7870test.txt
[root@localhosttest]#wc-ltest.txt
7test.txt
[root@localhosttest]#wc-ctest.txt
70test.txt
[root@localhosttest]#wc-wtest.txt
8test.txt
[root@localhosttest]#wc-mtest.txt
70test.txt
[root@localhosttest]#wc-Ltest.txt
17test.txt
說(shuō)明:
7870test.txt
行數(shù)單詞數(shù)字節(jié)數(shù)文件名
實(shí)例2:用wc命令怎么做到只打印統(tǒng)計(jì)數(shù)字不打印文件名
[root@localhosttest]#wc-ltest.txt
7test.txt
[root@localhosttest]#cattest.txt|wc-l
7[root@localhosttest]#
說(shuō)明:使用管道線linux命令大全,這在編寫(xiě)shell腳本時(shí)特別有用。
實(shí)例3:用來(lái)統(tǒng)計(jì)當(dāng)前目錄下的文件數(shù)
[root@localhosttest]#cdtest6
[root@localhosttest6]#ll
總計(jì)604
---xr--r--1rootmail30210811-3008:39linklog.log
---xr--r--1mailusers30210811-3008:39log2012.log
-rw-r--r--1mailusers6111-3008:39log2013.log
-rw-r--r--1rootmail011-3008:39log2014.log
-rw-r--r--1rootmail011-3008:39log2015.log
-rw-r--r--1rootmail011-3008:39log2016.log
-rw-r--r--1rootmail011-3008:39log2017.log
[root@localhosttest6]#ls-l|wc-l
8
[root@localhosttest6]#
說(shuō)明:數(shù)量中包含當(dāng)前目錄
實(shí)例部分,轉(zhuǎn)自: