场景01
- 查询的关键字"XXX process began"
- 日志的名称 test_xxx.log
- 显示关键字下方20行
在日志test_xxx.log里根据关键字“XXX process began” 显示关键字的行和关键字之后的20行
命令
tail -10000 test_xxx.log |grep -A20 'XXX process began'
场景02
- 查询的关键字"XXX process began"
- 日志的名称 test_xxx.log
在日志test_xxx.log里根据关键字“XXX process began” 显示关键字的行和关键字之后的20行
命令
tail -10000 test_xxx.log |grep -B20 'XXX process began'
场景03
- 查询的关键字"XXX process began"
- 日志的名称 test_xxx.log
在日志test_xxx.log里根据关键字“XXX process began” 显示关键字的行和关键字之前的20行以及之后的20行
命令
tail -10000 test_xxx.log |grep -C20 'XXX process began'