linux中,使用cat、head、tail命令顯示文件指定行


小文件可以用cat(也可以用head、tail)

顯示文件最后20行:cat err.log | tail -n 20 

顯示文件前面20行:cat err.log | head -n 20

從第20行開始顯示(包含第20行)后面的所有行:cat err.log | tail -n +20

從倒數第20行開始顯示(不包含倒數第20行)之前的所有行:cat err.log | head -n -20

顯示100行到500行:cat err.log | head -n 500 | tail -n +100

                                  cat err.log | tail -n +100 | head -n 401

                                  sed -n '100,500p' err.log

大文件最好用head、tail

當被查看的文件很大,不要用cat,直接用head,tail

head -n 20 err.log

tail -n 20 err.log 

 

顯示100行到500行:head -n500 test.txt | tail -n +100

          tail -n +100 test.txt| head -n 401 

示例

一個很大的文件all.log

看最后20行:tail -f -n20  all.log,也可以簡寫為:tail -fn20  all.log

看最后20行中的包含error的行(-i表示忽略大小寫):tail -f -n20  all.log | grep -i  error

給被搜索的關鍵字加顏色方便查看(默認是紅色):tail -f -n20  all.log | grep -i  error --color=auto

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM