linux查看log日志的方法:1、打開終端;2、輸入“tail -100f test.log”命令實時查看或者“cat -n test.log |grep "debug"”命令根據指定關鍵字查看日志即可。
具體操作步驟:
1、在linux系統桌面下使用快捷鍵【Ctrl+Alt+T】打開終端命令行模式。
2、在linux終端命令行模式中輸入以下命令查看log日志即可。
tail -100f test.log #實時監控100行日志
cat -n test.log |grep "debug" #查看指定關鍵字的日志
相關操作命令:
cat -n test.log |grep "debug" #得到關鍵日志的行號
cat -n test.log |tail -n +92|head -n 20 #查看這個關鍵字前10行和后10行的日志
sed -n '/2014-12-17 16:17:20/,/2014-12-17 16:17:36/p' test.log #根據日期查詢日志