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

相关推荐