linux中wc命令用法

2021-08-01 13:48:03 字數 1776 閱讀 3870

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

1.命令格式:

wc [選項]檔案…

2.命令功能:

統計指定檔案中的行數、字數、位元組數,並將統計結果顯示輸出。該命令統計指定檔案中的行數、字數、位元組數。如果沒有給出檔名,則從標準輸入讀取。wc同時也給出所指定檔案的**計數。

3.命令引數:

-c 統計位元組數。

-l 統計行數。

-m 統計字元數。這個標誌不能與 -c 標誌一起使用。

-w 統計字數。乙個字被定義為由空白、跳格或換行字元分隔的字串。

-l 列印最長行的長度。

--help顯示幫助資訊

--version顯示版本資訊

建議用--help檢視使用說明:

萬一能看懂呢??

usage: wc [option]... [file]...

or: wc [option]... --files0-from=f

print newline, word, and byte counts for each file, and a total line if

more than one file

is specified. with no file, or

when

file

is -,

read standard input. a word is a non-zero-length sequence

of characters

delimited by white space.

the options below may be used to

select which counts are printed, always in

the following order: newline, word, character, byte, maximum line length.

-c, --bytes print the byte counts

-m, --chars print the character counts

-l, --lines print the newline counts

--files0-from=f read input from the files specified by

nul-terminated names in

file f;

if f is - then read names from standard input

-l, --max-line-length print the length of the longest line

-w, --words print the word counts

--help display this help and exit

--version output version information and exit

gnu coreutils online help: report wc translation bugs to

for complete documentation, run: info coreutils 'wc invocation'

單詞:

usage:用法

Linux中wc命令用法

linux系統中的wc word count 命令的功能為統計指定檔案中的位元組數 字數 行數,並將統計結果顯示輸出。1 命令格式 wc 選項 檔案 2 命令功能 統計指定檔案中的位元組數 字數 行數,並將統計結果顯示輸出。該命令統計指定檔案中的位元組數 字數 行數。如果沒有給出檔名,則從標準輸入讀...

linux中wc命令用法

linux中wc命令用法 linux系統中的wc word count 命令的功能為統計指定檔案中的位元組數 字數 行數,並將統計結果顯示輸出。1 命令格式 wc 選項 檔案.2 命令功能 統計指定檔案中的位元組數 字數 行數,並將統計結果顯示輸出。該命令統計指定檔案中的位元組數 字數 行數。如果沒...

linux 中wc 用法小結

語法 wc 選項 檔案 說明 該命令統計給定檔案中的位元組數 字數 行數。如果沒有給出檔名,則從標準輸入讀取。wc同時也給出所有指定檔案的 計數。字是由空格字元區分開的最大字串。1 統計行數 wc l file 2 如果需要將stdin作為輸入,使用下列命令 cat file wc l 3 統計單詞...