in reply to grab 'n' lines from a file above and below a /match/
$x = 5; # Number of lines to print above and below. open (LOG, "GWSvc.log") || die "Unable to get a handle to the file: $! +\n"; $after = 0; while (<LOG>) { if ($after) { print $_; $after--; } else { push (@lines, $_); if ($#lines > $x) { shift(@lines); } } if (/c9391b56-b174-441b-921c-7d63/) { print $line while ($line = shift(@lines)); $after = $x; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: grab 'n' lines from a file above and below a /match/
by melora (Scribe) on Sep 17, 2004 at 15:10 UTC |