Linux檢視檔案行數

2021-10-10 07:31:29 字數 1029 閱讀 6214

linux wc命令可用於計算字數

利用wc指令我們可以計算檔案的byte數、字數、或是列數,若不指定檔名稱、或是所給予的檔名為"-",則wc指令會從標準輸入裝置讀取資料。

常用引數引數

說明-c(-/-bytes/–chars)

顯示bytes數

-l(/–lines)

顯示行數

-w(/–words)

顯示字數

–help

–version

顯示版本資訊

預設情況下,直接使用wc命令(無引數)將計算指定檔案的行數、字數,以及位元組數。也可查多個檔案資訊,後跟多個檔案即可。

補充:

檢視檔案指定行數內容

1、tail date.log 輸出檔案末尾的內容,預設10行

tail -20 date.log 輸出最後20行的內容

tail -n -20 date.log 輸出倒數第20行到檔案末尾的內容

tail -n +20 date.log 輸出第20行到檔案末尾的內容

tail -f date.log 實時監控檔案內容增加,預設10行。

2、head date.log 輸出檔案開頭的內容,預設10行

head -15 date.log 輸出開頭15行的內容

head -n +15 date.log 輸出開頭到第15行的內容

head -n -15 date.log 輸出開頭到倒數第15行的內容

3、sed -n 「開始行,結束行p」 檔名

sed -n 『70,75p』 date.log 輸出第70行到第75行的內容

sed -n '6p;260,400p; 』 檔名 輸出第6行 和 260到400行

sed -n 5p 檔名 輸出第5行

tail 和 head 加上 -n引數後 都代表輸出到指定行數,tail 是指定行數到結尾,head是開頭到指定行數

+數字 代表整數第幾行, -數字代表倒數第幾行

linux 檢視檔案(設定行數)

檢視檔案的命令有 cat more less head sed和tail等。例 檢視檔案的前5行 head 5 test.log 檢視檔案的後2行 tail 2 test.log 或 tail n 2 test.log 檢視檔案中間一段 sed n 5,10p test.log 這樣你就可以只檢視檔...

Linux檢視檔案指定行數內容

1 tail date.log 輸出檔案末尾的內容,預設10行 tail 20 date.log 輸出最後20行的內容 tail n 20 date.log 輸出倒數第20行到檔案末尾的內容 tail n 20 date.log 輸出第20行到檔案末尾的內容 tail f date.log 實時監控...

Linux檢視檔案指定行數內容

1 tail date.log 輸出檔案末尾的內容,預設10行 tail 20 date.log 輸出最後20行的內容 tail n 20 date.log 輸出倒數第20行到檔案末尾的內容 tail n 20 date.log 輸出第20行到檔案末尾的內容 tail f date.log 實時監控...