in reply to Re: Read log which is being updated continuislyin thread Read log which is being updated continuisly
use File::Tail; my $name="/some/file/toread/"; my $ref=tie *FH,"File::Tail",(name=>$name); while (<FH>) { print "$_"; } [download]