根据关键词查询日志导出成脚本

根据时间段查询日志:
sed -n '/2023-04-10 10:12/,/2023-04-10 12:15/p' /opt/apache-tomcat-7.0.88/logs/web.log > 001.log
查询最近多少条日志:
tail -n 100 default.log
根据关键字查询日志:
cat -n default.log |grep 'Message'
根据关键字查出后多少行的日志
tail -n 100 file.log | grep "关键字"
根据关键字查出后100行中包含关键字的行和该行的后10行
tail -n 100 file.log | grep "关键字" -A10   
根据关键字查出后100行中包含关键字的行和该行的前10行
tail -n 100 file.log | grep "关键字" -B10   
根据关键字查出后100行中包含关键字的行和该行的前后10行
tail -n 100 file.log | grep "关键字" -B10 -A10

你可能感兴趣的:(Linux,linux,运维)