我有一个非常大的日志文件,它会定期更新。如下:
commands: (List of files to be copied)
Exit time: Fri May 10 05:33:00 2013
Exit status: 2
commands: (List of files to be copied)
Exit Time: Fri May 20 05:34:00 2013
Exit status: 2
commands: (List of files to be copied)
Exit Time: Fri May 30 05:50:00 2013
Exit Status: 1
我有以下代码,它根据退出状态创建哈希
while ($line = <FH>) {
if ($line =~ /Exit time/) {
($exittime, $exittimeval) = split(': ',$line);
$stat{$qbsid} = {
time => $exittimeval
};
}
我现在需要根据本地时间创建一个时间戳,以便脚本不会比较时间戳(本地时间)之后的时间的日志文件。我有代码来比较时间如下
$date1 = "$hr1:$min1:$sec1, $moy1/$dt1/$yr1";
$date2 = "$hr2:$min2:$sec2, $moy2/$dt2/$yr2";
sub to_comparable {
my ($date) = @_;
my ($H,$M,$S,$d,$m,$Y) = $date =~ m{^(\d+):(\d+):(\d+), (\d+)/(\d+)/(\d+)\z}
or die;
return "$Y$m$d$H$M$S";
}
if (to_comparable($date2) > to_comparable($date1)) {
print "right\n";
} else {
print "wrong \n";
}
这里 $hr1,$min1,$sec1,$moy1,$dt1 和 $yr1 是本地时间变量,而 $hr2,$min2,$sec2, $moy2,$dt2 和 $yr2 是从哈希中获得的值。
最好在第一次运行时比较整个文件并创建时间戳。之后,上面的想法就开始了。
如果有任何问题,请纠正我。谢谢你。