cat 檔名 | head -n 數量
cat info.log | head -n 200 # 檢視info.log前200行
cat 檔名 | tail -n 數量
cat info.log | tail -n 200 # 檢視info.log後200行
cat info.log | grep '定時任務' # 返回info.log中包含"定時任務"的所有行
cat info.log | grep '定時任務' -b 10# 根據關鍵字檢視前10行日誌(注:b--before)
cat info.log | grep '定時任務' -a 10# 根據關鍵字檢視後10行日誌(注:a--after)
cat info.log | grep '定時任務' -c 10# 根據關鍵字檢視前後10行日誌(注:c--context)
grep '定時任務' info.log #根據關鍵字搜尋日誌
grep -a 10 '定時任務' info.log #根據關鍵字檢視前10行日誌(注:b--before)
grep -b 10 '定時任務' info.log #根據關鍵字檢視後10行日誌(注:a--after)
grep -c 10 '定時任務' info.log #根據關鍵字檢視前後10行日誌(注:c--context)
注:grep不光支援單檔案搜尋同樣也支援多檔案搜尋
例:grep '定時任務' *.log
linux搜尋關鍵字檢視日誌
1 檢視日誌 前 n行 cat 檔名 head n 數量 demo cat test.log head n 200 檢視test.log前200行 2 檢視日誌 尾 n行 方法一 cat 檔名 tail n 數量 demo cat test.log tail n 200 檢視test.log倒數20...
linux 搜尋關鍵字
搜尋文字名稱 console.log 搜尋關鍵字 keyword 1 cat console.log grep keyword less 和 more的區別,都是從檔案頭開始開啟檔案,more 只能向下搜尋,less既可以向下搜尋,也可以向上搜尋 2 less console.log 開啟檔案 ke...
關鍵字搜尋
關鍵字搜尋 function sercah waitmsg 已找到對應的 g keys count 處關鍵字!1 相同關鍵字查詢時返回 reading children reading box m p css span keys removeattr style removeattr id g ke...