Linux命令檢視檔案指定行的內容

2021-10-25 02:08:03 字數 479 閱讀 4338

tail -n +/-數字 檔名

head -n 數字 檔名

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

tail -n +數字 檔名

表示檢視檔案的某一行到最後一行,比如檢視helloworld.txt的第3行到最後一行:tail -n +3 helloworld.txt

tail -n -數字 檔名

表示檢視檔案的最後幾行,比如檢視helloworld.txt的最後5行:tail -n -5 helloworld.txt

head -n 數字 檔名

表示檢視檔案前幾行的內容,比如檢視helloworld.txt的前3行內容:head -n 3 helloworld.txt

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

表示檢視檔案的開始行到結束行的內容:sed -n "5,9p"

cat命令檢視檔案指定行數

cat filename tail n 10 顯示檔案最後10行 cat filename head n 10 顯示檔案前面10行 cat filename tail n 10 從10行開始顯示,顯示10行以後的所有行 cat filename head n 50 tail n 10 顯示10行到5...

linux檢視檔案有多少行

使用wc命令 具體通過wc help 可以檢視。如 wc l filename 就是檢視檔案裡有多少行 wc w filename 看檔案裡有多少個word。wc l filename 檔案裡最長的那一行是多少個字。wc命令 wc命令的功能為統計指定檔案中的位元組數 字數 行數,並將統計結果顯示輸出...

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 實時監控...