linux 查看日志关键字 2019-01-04 Linux, 笔记 linux 查看日志关键字 前n行: 1cat test.log | head -n 200 # 查看test.log前200行 尾n行: 1cat test.log | tail -n 200 # 查看test.log倒数200行 根据关键词查看日志并返回关键词所在行: 123cat test.log | grep "http" # 返回test.log中包含http的所有行grep -i "http" ./test.log # 返回test.log中包含http的所有行(-i忽略大小写)