Linux 查看日志的时候常用命令总结

Linux ~ 查看日志的常用命令总结

1.tail

  -n <行数>,显示文件的尾部n行内容。
 -f  循环读取,常用于查阅正在改变的日志文件。

 

  ① tail   -f  test.log     实时显示test.log文件里的最尾部的内容,只要test.log更新就可以看到最新的文件内容。   

  ② tail -100f    test.log   实时监控100行日志。

  ③ tail  -n  100  test.log   查询日志尾部最后100行日志内容。

      ④ tail  -n  +100  test.log   查询100行之后所有的日志内容。

 2.head

  ①head  -n 100 test.log 查询日志文件中的头100行日志。

  ②head  -n  -100 test.log  查询日志文件中除了最后100行的其他内容。

3.grep

  ①grep "debug"  test.log 查询test.log中所有含有debug关键字的记录

4.more和less

  ①cat -n test.log | grep "debug" test.log | more 这样就可以分页打印了,通过点击空格键翻页。

5.使用>xxxx.txt将查到的日志保存到文件中。

  ①cat -n test.log |grep "debug" >debug.txt

    

 

  

转载于:https://www.cnblogs.com/honeyJYY/p/11281410.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值