in reply to Re: Remembering Log Location after process dies.
in thread Remembering Log Location after process dies.
#!/usr/bin/perl -w use File::Tail; my $LogFile="/usr/local/apache2/eventmgr/ncomount/page.log"; my $file=File::Tail->new("$LogFile"); while (defined($line=$file->read)) { print "$line"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Remembering Log Location after process dies.
by matija (Priest) on Mar 04, 2004 at 22:09 UTC | |
by onegative (Scribe) on Mar 04, 2004 at 22:31 UTC |