1. 程式人生 > >Linux環境中顯示從n行到m行的內容

Linux環境中顯示從n行到m行的內容

使用sed命令;
具體檢視使用規則:
#sed --help;
顯示檔案X行命令:
#sed -n 'xp' filename     
顯示檔案X行到Y行的內容:

#sed -n 'x,yp' filename   .

sed -n 4,8p file #列印file中的4-8行sed -n 4p file #列印file中的第4行

linux 如何顯示一個檔案的某幾行(中間幾行)

【一】從第3000行開始,顯示1000行。即顯示3000~3999行

cat filename | tail -n +3000 | head -n 1000

【二】顯示1000行到3000行

cat filename| head -n 3000 | tail -n +1000

*注意兩種方法的順序

分解:

tail -n 1000:顯示最後1000行

tail -n +1000:從1000行開始顯示,顯示1000行以後的

head -n 1000:顯示前面1000行
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

【三】用sed命令

sed -n ‘5,10p’ filename 這樣你就可以只檢視檔案的第5行到第10行。