1. 程式人生 > 其它 >Linux檢視檔案指定行數內容與查詢檔案內容

Linux檢視檔案指定行數內容與查詢檔案內容

Linux檢視檔案指定行數內容

1、tail date.log 輸出檔案末尾的內容,預設10行

 tail -20  date.log        輸出最後20行的內容

 tail -n -20  date.log    輸出倒數第20行到檔案末尾的內容

 tail -n +20  date.log   輸出第20行到檔案末尾的內容

 tail -f date.log            實時監控檔案內容增加,預設10行。

2、head date.log 輸出檔案開頭的內容,預設10行

 head -15  date.log     輸出開頭15行的內容

 head -n +15 date.log 輸出開頭到第15行的內容

 head -n -15 date.log  輸出開頭到倒數第15行的內容

3、sed -n "開始行,結束行p" 檔名

  sed -n '70,75p' date.log             輸出第70行到第75行的內容

  sed -n '6p;260,400p; ' 檔名    輸出第6行 和 260到400行

  sed -n 5p 檔名                       輸出第5行

tail 和 head 加上 -n引數後 都代表輸出到指定行數,tail 是指定行數到結尾,head是開頭到指定行數

+數字 代表整數第幾行, -數字代表倒數第幾行

Linux裡如何查詢檔案內容

Linux查詢檔案內容的常用命令方法。

從檔案內容查詢匹配指定字串的行:
grep"被查詢的字串"檔名例子:在當前目錄裡第一級資料夾中尋找包含指定字串的.in檔案grep"thermcontact"∗/∗.in從檔案內容查詢與正則表示式匹配的行:
grep –e “正則表示式” 檔名

查詢時不區分大小寫:
grep–i"被查詢的字串"檔名查詢匹配的行數:
grep -c "被查詢的字串" 檔名

從檔案內容查詢不匹配指定字串的行:
$ grep –v "被查詢的字串" 檔名

從根目錄開始查詢所有副檔名為.log的文字檔案,並找出包含”ERROR”的行
find / -type f -name ".log" | xargs grep "ERROR"
例子:從當前目錄開始查詢所有副檔名為.in的文字檔案,並找出包含”thermcontact”的行
find . -name "
.in" | xargs grep "thermcontact"

原文出處:

關關雎鳩, Linux檢視檔案指定行數內容,

https://www.cnblogs.com/zeke-python-road/p/9455048.html

鳥哥的linux, Linux裡如何查詢檔案內容, http://blog.chinaunix.net/uid-25266990-id-199887.html