linux查找日志技巧
linux 日志查找技巧 查询日志中含有某个关键字的信息cat app.log |grep 'error'关键字后10行日志cat app.log |grep -10 'error' 查询日志尾部最后10行的日志tail -n 10 app.log 实时更新日志tail -f app.log 从尾部查询日志,并过显示关键字后10行日志tail app.log |grep -10 'error' 查询10行之后的所有日志tail -n +10 app.log 查询日志文件中的头10行日志head -n 10 app.log 查询日志文件除了最后10行的其他所有日志head -n -10 app.log 查询日志中含有某个关键字的信息,显示出行号(在1的基础上修改)cat -n app.log |grep 'error' 显示102行,前10行和后10行的日志(不太好理解)cat -n app.log |tail -n +92|head -n...