[Linux]cat 搭配wc用法

Eason
1 min readJul 18, 2019

--

印出檔案的內容

cat [filepath]example:
cat ./build/success.log
output:aaabbbccc

印出檔案的行數、單詞數、字符串數

cat [filepath] | wcexample:
cat ./a.log | wc
output:
(行數 單詞數 字符串數)
4 3 13

印出檔案行數

cat [filepath] | wc -lexample:
cat ./a.log | wc -l
output:
3

單獨使用wc

wc [filepath]example:
wc ./a.log
output:
(行數 單詞數 字符串數 檔案路徑)
4 3 13 ./a.log

--

--

Eason
Eason

No responses yet