in reply to Re^3: Personal library with CPAN
in thread Personal library with CPAN
#!/usr/bin/perl -w use CGI ':standard'; # Newly inserted BEGIN { if ( $ENV{PERL5LIB} and $ENV{PERL5LIB} =~ /^(.*)$/ ) { # Blindly untaint. Taintchecking is to protect # from Web data; # the environment is under our control. eval "use lib '$_';" foreach ( reverse split( /:/, $1 ) ); } } use Mail::Sendmail;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Personal library with CPAN
by Zaxo (Archbishop) on May 18, 2006 at 12:19 UTC |