Re: [Perl-unix-users] How do i implement tail -f in Perl

2009-04-27 Thread Poul H. Sørensen
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 th

[Perl-unix-users] How do i implement tail -f in Perl

2009-04-27 Thread Kamal Ahmed
Hi, Is there a way to implement tail -f in perl wihout using external packages like File::Tail Thanks, -Kamal. ___ Perl-Unix-Users mailing list Perl-Unix-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs