大家好,又见面了,我是你们的朋友全栈君。
转载:https://blog.csdn.net/u013410747/article/details/71192140
1
cat app.log |grep ‘error’
grep -C 100 ‘error’ app.log
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
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/151390.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...