1. 程式人生 > >linux下檢視檔案第幾行內容的方法

linux下檢視檔案第幾行內容的方法

一,方法1

nl file-name |sed -n '5p'
檢視第五行
 
二,方法2
 head -n file_name|tail -1
 檢視第n行
三,方法3 

.輸出一個檔案的第4行
sed -n '4p' ufile
awk 'NR==4' ufile
head -4 file|tail -1

四,方法4

2.輸出檔案的第3列(預設分隔符為tab,其他分隔符的處理可以參考awk,cut的man資訊)
awk '{print $3}' ufile
cut -f 3