Kamal Ahmed wrote:
> Hi,
> 
> Is there a way to implement tail -f in perl wihout using external 
> packages like File::Tail

Yes, there are many ways to do that. I would suggest either:

        my @tailf=( '/bin/tail', '-f', $file );
        system( @tailf );

or try "perldoc -m File::Tail" and then work out what you need...

But you ought to have good reasons WHY you want to do that?

happy debugging

poul
_______________________________________________
Perl-Unix-Users mailing list
Perl-Unix-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to