tail -10000f xxx.log 实时监控日志
cat xxx.log|grep -C 2 'keyword' 抓取关键词上下两行的日志内容
cat filename | tail -n +3000 | head -n 1000 查看日志文件 从3000行开始继续下翻1000行 (实际3000~~3999)
tail -n 1000 显示最后1000行
tail -n +1000 从1000行开始,显示1000行以后的
head -n 1000 显示前面1000行
日志内容特别多,打印在屏幕上不方便查看
(1)使用more和less命令,
如: cat -n test.log |grep "debug" |more 这样就分页打印了,通过点击空格键翻页
(2)使用 >xxx.txt 将其保存到文件中,到时可以拉下这个文件分析
如:cat -n test.log |grep "debug" >debug.txt
网友评论