码迷,mamicode.com
首页 > 系统相关 > 详细

linux如何在日志中查找关键字、前几行、结尾几行

时间:2020-10-29 10:38:30      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:方法   dem   log   http   效果   inux   关键字   倒数   查找   

查看日志 前 n行

1  cat 文件名 | head -n 数量

demo 

cat  test.log | head -n 100   # 查看test.log前100行

查看日志 尾 n行

 2 cat 文件名 | tail -n 数量

demo 

cat test.log |tail -n 100 # 查看test.log倒数100行

3、根据 关键词 查看日志 并返回关键词所在行

方法一:cat 路径/文件名 | grep 关键词

 

demo 

 cat  test.log | grep "http"  # 返回test.log中包含http的所有行

方法二:grep -i 关键词 路径/文件名  (与方法一效果相同,不同写法而已)

  demo:

    grep -i "http" ./test.log  # 返回test.log中包含http的所有行

linux如何在日志中查找关键字、前几行、结尾几行

标签:方法   dem   log   http   效果   inux   关键字   倒数   查找   

原文地址:https://www.cnblogs.com/xiong-hua/p/13894196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!