LINUX

LINUX WC指令

介紹

wc指令用來顯示檔案的位元組、字數及行數。

語法

wc [options] [files]

常用的options

-l  Print the line count only.

-w  Print word count only.

-c  Print the byte count only.

-L  Locate the longest line in each file and print its length in bytes.

範例

你可以顯示檔案的位元組、字數及行數:

⤍ wc myfile
 1  3 18 myfile

代表myfile裡包含了1行、3個字及18個位元組。

發佈留言