linux,日誌查詢技巧
阿新 • • 發佈:2018-12-30
1.查詢日誌中含有某個關鍵字的資訊
cat app.log |grep 'error'
2.查詢日誌尾部最後10行的日誌
tail -n 10 app.log
3.查詢10行之後的所有日誌
tail -n +10 app.log
4.查詢日誌檔案中的頭10行日誌
head -n 10 app.log
5.查詢日誌檔案除了最後10行的其他所有日誌
head -n -10 app.log
6.查詢日誌中含有某個關鍵字的資訊,顯示出行號(在1的基礎上修改)
cat -n app.log |grep 'error'
7.顯示102行,前10行和後10行的日誌
cat -n app.log |tail -n +92|head -n 20
8.根據日期時間段查詢(前提日誌總必須列印日期,先通過grep確定是否有該時間點)
sed -n '/2014-12-17 16:17:20/,/2014-12-17 16:17:36/p' app.log
9.使用more和less命令(分頁檢視,使用空格翻頁)
cat -n app.log |grep "error" |more
10.吧日誌儲存到檔案
cat -n app.log |grep "error" > temp.txt
如有更好的查詢日誌的策略,敬請留言,方便收錄!