boat73 has asked for the wisdom of the Perl Monks concerning the following question:
use File::Tail; use HTTP::Date; use DBI; $name = "c:\\temp\\test.log"; $file=File::Tail->new(name=>$name, interval=>1, maxinterval=>10, tail= +>100); while (defined($line=$file->read)) { print "$line\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: File::Tail with top fill logs
by blazar (Canon) on Oct 12, 2006 at 14:39 UTC | |
by boat73 (Scribe) on Oct 12, 2006 at 14:46 UTC | |
by Posthumous (Scribe) on Oct 13, 2006 at 01:04 UTC | |
by boat73 (Scribe) on Oct 13, 2006 at 11:11 UTC |