in reply to Problems using File::Tail

What lines are missing, the last few? You are probably suffering from buffering. I was missing the last few until I added
use IO::Handle qw( ); OUT->autoflush(1);

Replies are listed 'Best First'.
Re^2: Problems using File::Tail
by gg48gg (Sexton) on Sep 22, 2011 at 17:33 UTC
    Yes. The last few lines. I'll give that a try and report back. Thanks.
      Works! Thank you very much!