【Linux】一步一步学Linux——wc命令(52)
生活随笔
收集整理的這篇文章主要介紹了
【Linux】一步一步学Linux——wc命令(52)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
00. 目錄
文章目錄
- 00. 目錄
- 01. 命令概述
- 02. 命令格式
- 03. 常用選項
- 04. 參考示例
- 05. 附錄
01. 命令概述
wc - 輸出文件中的行數、單詞數、字節數
02. 命令格式
wc [選項列表]... [文件名列表]...03. 常用選項
對每個文件輸出行、單詞、和字節統計數,如果指定了多于一個文件則還有 個行數的總計。沒有指定文件或指定的文件是 -,則讀取標準輸入。 -c, --bytes, --chars輸出字節統計數。 -l, --lines輸出換行符統計數。 -L, --max-line-length輸出最長的行的長度。 -w, --words輸出單詞統計數。 --help 顯示幫助并退出 --version輸出版本信息并退出04. 參考示例
4.1 輸出文件中的行數、單詞數、字節數
[deng@localhost ~]$ wc /etc/passwd 46 90 2376 /etc/passwd [deng@localhost ~]$4.2 統計字節數
[deng@localhost ~]$ wc -c /etc/passwd 2376 /etc/passwd [deng@localhost ~]$4.3 統計字符數
[deng@localhost ~]$ wc -m /etc/passwd 2376 /etc/passwd [deng@localhost ~]$ [deng@localhost ~]$ echo "12345" | wc -m 6 [deng@localhost ~]$4.4 統計行數
[deng@localhost ~]$ wc -l /etc/passwd 46 /etc/passwd [deng@localhost ~]$4.4 輸出最長的行的長度
[deng@localhost ~]$ wc -L /etc/passwd 99 /etc/passwd [deng@localhost ~]$4.5 統計單詞總數
[deng@localhost ~]$ echo "aa bb cc " | wc -w 3 [deng@localhost ~]$4.6 統計多個文件信息
[deng@localhost ~]$ wc test.c test.cpp 29 79 599 test.c77 180 1671 test.cpp106 259 2270 總用量 [deng@localhost ~]$05. 附錄
參考:【Linux】一步一步學Linux系列教程匯總
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的【Linux】一步一步学Linux——wc命令(52)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Linux】一步一步学Linux——f
- 下一篇: 【Linux】一步一步学Linux——s