1、時段日誌:
命令: sed -n '/2021-12-08 16:00:00/,/2021-12-08 17:00:00/p' nohup.out
注:需要日誌中有對應的時間,否則查不到
命令: sed -n '/2021-12-08 16*/,/2021-12-08 17*/p' nohup.out
注:模糊查詢,避免日誌中沒有對應的時間
命令: grep '2021-12-08 17:[00-22]' nohup.out
注:正則匹配搜尋
2、結合grep:
命令: sed -n '/2021-12-08 16*/,/2021-12-08 17*/p' nohup.out | grep post
注:查詢時間段內帶有post的日誌行
3、日誌匯出:
命令:sed -n '/2021-12-08 16*/,/2021-12-08 17*/p' nohup.out > yoyo.log
注:日誌匯出為yoyo.log
4、日誌檢視:
tail -n 10 nohup.out 查詢最後10行
tail -f nohup.out 監視檔案增長(尾部內容、預設10行)
head -n 10 nohup.out 查詢開始10行
cat -n nohup.out 給日誌新增行號
cat -n nohup.out | grep post 含有post的日誌新增行號
Linux檢視日誌命令
1 cat命令 功能 1 顯示整個檔案。示例 cat filename 2 把檔案串連線後傳到基本輸出,如將幾個檔案合併為乙個檔案或輸出到螢幕。示例 cat file1 file2 file 說明 把檔案串連線後傳到基本輸出 螢幕或加 filename 到另乙個檔案 cat引數詳解 n 或 numb...
Linux檢視日誌命令
1 cat命令 功能 1 顯示整個檔案。示例 cat filename 2 把檔案串連線後傳到基本輸出,如將幾個檔案合併為乙個檔案或輸出到螢幕。示例 cat file1 file2 file 說明 把檔案串連線後傳到基本輸出 螢幕或加 filename 到另乙個檔案 cat引數詳解 n 或 numb...
Linux檢視日誌命令
1 cat命令 功能 1 顯示整個檔案。示例 cat filename 2 把檔案串連線後傳到基本輸出,如將幾個檔案合併為乙個檔案或輸出到螢幕。示例 cat file1 file2 file 說明 把檔案串連線後傳到基本輸出 螢幕或加 filename 到另乙個檔案 cat引數詳解 n 或 numb...