up vote 2 down vote favorite
2
share [g+] share [fb]

I want to excecute a tail command in Unix for indefinite time and capture its output in a Perl script, process it and store certain data into a database. But it should be live, meaning old data – once stored in the database – shouldn't be reprocessed. It should only capture, and process only the most recent output.

Can someone please tell me how can this be done? Thanks in anticipation.

link|improve this question

38% accept rate
feedback

1 Answer

Try File::Tail which can handle multiple files at same time.

link|improve this answer
i did it by using while(<>) and $_ thanks for your support.. – awaiskhan200 Aug 17 '10 at 7:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.