X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fgrepdbg;h=467c785330fe4db733d2689f37210bfc1a0674a6;hb=78cf2dcb9be8128af7f8dc5ae37540c9c53c6057;hp=250a898b5701aed2647c9e1de1822909cb48207e;hpb=118cbdbcf7e06d022a3030670c0e70b05bd8c5b3;p=spider.git diff --git a/perl/grepdbg b/perl/grepdbg index 250a898b..467c7853 100755 --- a/perl/grepdbg +++ b/perl/grepdbg @@ -33,17 +33,21 @@ use vars qw(@list $fp @today $string); $fp = DXLog::new('debug', 'dat', 'd'); @today = Julian::unixtoj(time()); +my $nolines = 1; +my @prev; for my $arg (@ARGV) { if ($arg =~ /^-/) { $arg =~ s/^-//o; push @list, $arg; + } elsif ($arg =~ /^\d+$/) { + $nolines = $arg; } else { $string = $arg; last; } } -die "usage: grepdbg [[-nnn] ..] \n" unless $string; +die "usage: grepdbg [nn] [[-nnn] ..] \n" unless $string; push @list, "0" unless @list; for my $entry (@list) { @@ -54,10 +58,15 @@ for my $entry (@list) { while (<$fh>) { my $line = $_; chomp $line; + push @prev, $line; + shift @prev while @prev > $nolines; if ($line =~ m{$string}io) { - my @line = split '\^', $line; - my $t = shift @line; - print atime($t), ' ', join('^', @line), "\n"; + for (@prev) { + s/([\x00-\x1f\x7f-\xff])/sprintf("\\x%02X", ord($1))/eg; + my ($t, $l) = split /\^/, $line, 2; + print atime($t), ' ', $l, "\n"; + } + @prev = (); } } $fp->close();