in reply to Re^3: grep lines from log for last 10 mints
in thread grep lines from log for last 10 mints
Use of uninitialized value in concatenation (.) or string at ./test.pl line 11, <> line 144807. Use of uninitialized value in concatenation (.) or string at ./test.pl line 11, <> line 144807.#!/usr/bin/perl -- use strict; use warnings; use Data::Dump; my $start = qx{date +'%b %e %T'}; my $end = qx{date -d '10 mins ago' +'%b %e %T'}; dd $start, $end; while (<>) { my @Fld = split(' ', $_, -1); my $tm = $Fld[(1)-1] . ' ' . $Fld[(2)-1] . ' ' . $Fld[(3)-1]; print $_ if $start lt $tm and $tm lt $end; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: grep lines from log for last 10 mints
by Anonymous Monk on Aug 07, 2012 at 09:22 UTC |