Linux 文件日志查询

查询日志中含有某个关键字的信息

cat app.log |grep 'error'

查询日志尾部最后10行的日志

tail  -n  10  app.log

查询10行之后的所有日志

tail -n +10 app.log

查询日志文件中的头10行日志

head -n 10  app.log

查询日志文件除了最后10行的其他所有日志

head -n -10  app.log

查询日志中含有某个关键字的信息,显示出行号

cat -n  app.log |grep 'error'

显示102行,前10行和后10行的日志

cat -n app.log |tail -n +92|head -n 20

根据日期时间段查询

sed -n '/2014-12-17 16:17:20/,/2014-12-17 16:17:36/p'  app.log

使用more和less命令(分页查看,使用空格翻页)

 cat -n app.log |grep "error" |more

把日志保存到文件

cat -n app.log |grep "error"  > temp.txt

Last updated

Was this helpful?