in reply to Parsing a text log file as it is being created

File::Tail

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

  • Comment on •Re: Parsing a text log file as it is being created

Replies are listed 'Best First'.
Re: •Re: Parsing a text log file as it is being created
by Qitan (Novice) on Dec 27, 2002 at 14:17 UTC
    I downloaded File::Tail and tried inserting some code to use it but, I get an error stating that it can't find File/Tail in the @INC. I put the Tail.pm file in my c:\Perl\lib folder (which is in my path). Is that enough, or do I need to install this module some other way? I am using Activestate Perl 5.6.1 on WinXP Home. Thanks
      You need to put Tail.pm in C:\Perl\site\lib\File. Also you need to install Time::HiRes, easiest way is to use the Package Manager.
      PPM>install Time::HiRes

      poj