in reply to Matching lines in 2+ GB logfiles.
while ( $window =~ m/\w{3}\s{1,2}\d{1,2}([^\n]+)\n/oigc && $1 =~ /$re/ +) { &$callback($1); }
Precompiling $re using qr{} is recommended, or use the o option.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Matching lines in 2+ GB logfiles.
by dbmathis (Scribe) on May 01, 2008 at 17:10 UTC |