常⽤linux⽇志查询命令1.查看实时⽇志:
tail -f nohup.out
2.分页查看所有⽇志:
cat nohup.out | more
4.分页查看前N⾏⽇志:
tail -n 1000 nohup.out | more
5.查看实时⽇志并检索关键字:
tail -f nohup.out | grep "关键字"
6.检索⽇志,并显⽰该条⽇志的前后N⾏记录:
cat nohup.out | grep -n-B10-A10"关键字"
7.查看⽇志,从第1000⾏开始,显⽰500⾏:
linux在线命令查询平台
cat nohup.out | tail -n +1000| head -n500
### 8.查看⽇志,显⽰1000⾏到1500⾏:
```shell
cat nohup.out | head -n 1500| tail -n +1000
<div class="se-preview-section-delimiter"></div>
9.删除包括关键词的⾏:
sed -i '/关键词/d' nohup.out
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论