linux 查看日志关键字


linux 查看日志关键字

  • 前n行:
1
cat  test.log | head -n 200  # 查看test.log前200行
  • 尾n行:
1
cat  test.log | tail -n 200  # 查看test.log倒数200行
  • 根据关键词查看日志并返回关键词所在行:
1
2
3
cat  test.log | grep "http"  # 返回test.log中包含http的所有行

grep -i "http" ./test.log  # 返回test.log中包含http的所有行(-i忽略大小写)