1、查看日志前 n行:
cat 文件名 | head -n 数量
例子:cat test.log | head -n 100 # 查看test.log前100行
2、查看日志尾 n行:
cat 文件名 | tail -n 数量
例子:cat test.log | tail -n 50 # 查看test.log倒数50行
3、根据 关键词 查看日志 并返回关键词所在行:
方法一:cat 路径/文件名 | grep 关键词
例子:cat test.log | grep "关键字" # 返回test.log中包含关键字的所有行
方法二:grep -i 关键词 路径/文件名