I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2009-05-05 13:33:00-07 by steventardy
useful example - override STDIN
this was very useful for me and thought i'd pass along the example.
use Getopt::Long; my $filename=0; GetOptions('file=s' => \$filename); if( $filename ne "0") { require File::Tail; my $ref=tie *STDIN,"File::Tail", (name=>$filename); } while ( <STDIN> ) { ... }

the same script can be used to read from STDIN:
     cat logfile | script.pl
or watch the end of a file:
     script.pl --file=logfile
Direct Responses: Write a response