Linux 檢視檔案行數,第幾行至第幾行

2021-10-07 20:40:15 字數 891 閱讀 7790

# 進入檔案

vi test.txt

# 顯示行號 :為shift + :進入命令模式

:set nu

# 跳轉到第幾行

:20 # 跳轉到20行 跳轉後游標顯示在20行

擷取檢視第5行到第6行

寫法1:cat test.txt -n | tail -n +5 | head -n 2

寫法2:cat test.txt -n | head -n 6 | tail -n +5

解析:cat test.txt -n 擷取test.txt檔案內容,並顯示行號

tail -n +5 從第5行開始擷取資料

head -n 2 擷取前面2行資料

深度解析:

tail head 擷取命令,都是基於當前已擷取內容繼續進行擷取的

cat test.txt -n這個命令,當前擷取內容為整個文字

tail -n +5從當前內容:整個文字,的第五行開始擷取資料

此時當前內容為:第五行到文字結束

head -n 2從當前內容,擷取前面2行資料

相同功能命令:

sed 「5,6p」 -n test.txt

一樣擷取檢視第5行到第6行資料

怎麼在linux檢視檔案的第幾行到第幾行

linux 如何顯示乙個檔案的某幾行 中間幾行 一 從第3000行開始,顯示1000行。即顯示3000 3999行 cat filename tail n 3000 head n 1000 二 顯示1000行到3000行 cat filename head n 3000 tail n 1000 注意...

Linux 查詢檔案的第幾行到第幾行命令

cat catalina.out tail n 14000 head n 10000 sort uniq c linux 如何顯示乙個檔案的某幾行 中間幾行 一 從第3000行開始,顯示1000行。即顯示3000 3999行 cat filename tail n 3000 head n 1000 ...

Linux檢視檔案行數

linux wc命令可用於計算字數 利用wc指令我們可以計算檔案的byte數 字數 或是列數,若不指定檔名稱 或是所給予的檔名為 則wc指令會從標準輸入裝置讀取資料。常用引數引數 說明 c bytes chars 顯示bytes數 l lines 顯示行數 w words 顯示字數 help ver...