linux 查看log里面的error
Posted 牛气冲天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 查看log里面的error相关的知识,希望对你有一定的参考价值。
find / -name a.txt : 从根目录下全局搜索a.txt文件
grep “error” test.log :从test.log中过滤出包含error的文本行
grep -A 10 "error" test.log :过滤制定数据,并展示后10行
grep -B 10 "error" test.log :过滤指定数据,并展示前10行
grep -C 10 "error" test.log :过滤指定数据,并展示前后10行
文件查看
cat ./a.txt :一次性读取并打印a.txt文件里的所有信息
more ./a.txt :读取a.txt 文件,每次读取一屏,按空格键翻页
tail -200 a.txt :读取a.txt 文件的后两百行
tail -f a.txt 实时读取a.txt文件
head -10 a.txt :读取a.txt文件的前10行
以上是关于linux 查看log里面的error的主要内容,如果未能解决你的问题,请参考以下文章