Linux 查看时间段内的日志
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在linux机器上 有的时候 想查询某时间段的报错日志,
可以使用vim、more、cat等等办法,但是这种查询起来比较麻烦,想查询某时间段内的日志可以使用以下命令:
使用sed命令如下:
sed -n ‘/2018-11-17 09:25:55/,/2018-11-17 09:30:55/p’ std.log
这样可以精确地截取出来某个时间段的日志。
但是问题又来了,但会有文件比较大的情况,vi无法打开日志。
此时无法使用精准的时间,有可能查询不出结果,所以用以下正则表达式的情况查询更灵活
sed -n ‘/2018-11-17 09:[0-9][0-9]:[0-9][0-9]/,/2010-11-18 16:[0-9][0-9]:[0-9][0-9]/p’ std.log
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)