中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

Linux的 wc 命令詳解

時(shí)間:2019-08-16

linux簡(jiǎn)單命令大全_linux命令大全_linux命令大全

#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ù)

linux命令大全_linux命令大全_linux簡(jiǎn)單命令大全

--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

linux簡(jiǎn)單命令大全_linux命令大全_linux命令大全

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

linux簡(jiǎn)單命令大全_linux命令大全_linux命令大全

[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

linux命令大全_linux命令大全_linux簡(jiǎn)單命令大全

[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)自:

 上一個(gè)教程:Linux中ps命令詳解