当前位置: 技术问答>linux和unix
求一shell脚本
来源: 互联网 发布时间:2016-06-26
本文导语: 从mysqld.log日志中提取 早上9点到下午3点的内容! 日志中每一行的格式如下: 090819 0:02:52 [Warning] Statement may not be safe to log in statement format. Statement: ... 第二列是时间信息!就是根据这列判断! ...
从mysqld.log日志中提取 早上9点到下午3点的内容!
日志中每一行的格式如下:
090819 0:02:52 [Warning] Statement may not be safe to log in statement format. Statement: ...
第二列是时间信息!就是根据这列判断!
日志中每一行的格式如下:
090819 0:02:52 [Warning] Statement may not be safe to log in statement format. Statement: ...
第二列是时间信息!就是根据这列判断!
|
#!/bin/sh
input=./mysqld.log
output=./output.log
time=`awk '{print $2}' $input | awk -F: '{if($1>=9 && $1
input=./mysqld.log
output=./output.log
time=`awk '{print $2}' $input | awk -F: '{if($1>=9 && $1