Linux下Centos檢視檔案的前幾行和最後幾行

2021-10-03 06:16:57 字數 799 閱讀 5743

可以使用head(檢視前幾行)、tail(檢視末尾幾行)兩個命令。

例如:檢視/etc/profile的前10行內容,應該是:

# head -n 10 /etc/profile

檢視/etc/profile的最後5行內容,應該是:

# tail  -n 5 /etc/profile

如果想同時檢視可以將前10行和後5行的顯示資訊通過輸出重定向的方法儲存到乙個文件,這樣檢視文件即可一目了然。

例如:將內容輸出到/home/test檔案中

# head -n 10 /etc/profile >>/home/test

# tail  -n 5 /etc/profile>>/home/test

檢視的話只需要開啟test檔案即可。

cat /home/test

除此之前,我們還可以根據行號定位中間日誌:

【一】從第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行

【三】用sed命令

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

centos 下檢視硬體資訊

centos 下檢視硬體資訊 一 使用centos常用命令檢視cpu more proc cpuinfo grep model name grep model name proc cpuinfo root localhost grep cpu proc cpuinfo model name inte...

linux下如何檢視某個程序開啟了那些檔案

1.取得程序號 cba001 proc 26751 fd ps ef grep named root 17066 26915 0 13 06 pts 8 00 00 00 grep named root 26751 1 0 jul06 00 02 06 opt usr bin named 注 執行p...

linux版本centos檢視IP

輸入 ip查詢命名 ip addr 也可以輸入ifconfig centos沒有ifconfig命令 檢視ip 此命令會出現 此時發現ens33沒有inet這個屬性,也就沒辦法檢視ip位址 接下來通過vi etc sysconfig network scripts ifcfg ens33 檢視ens...