Linux檢視檔案指定行數內容

2021-10-19 05:19:29 字數 733 閱讀 9396

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檢視檔案指定行數內容

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 n 數字 檔名 2 head n 數字 檔名 3 sed n 開始行,結束行p 檔名 步驟一 cd 到要檔案所在目錄 cd到要檢視指定行數內容的檔案所在目錄,本文以specialvariable.sh檔案為例,cd home test shell 步驟二 tail n 數字 檔名 ta...

linux檢視指定內容檔案並替換

find d01 name a.php xargs grep ri sub root.config.inc.php sed i s sub root.config.inc.php sub root.config.inc.php g grep sub root.config.inc.php rl d0...