Thread -T Modus
(1 answers)
Opened by pktm at 2007-10-06 14:44
das problem ist, FindBin ist nicht taint-safe, weil der pfad u.u. aus umgebungsvariablen
erkannt wird. es geht aber ein workaround: Code (perl): (dl
)
1 2 3 4 5 6 7 BEGIN { use FindBin qw/$Bin/; $Bin =~ m/(.*)/; $Bin = $1; } use lib $Bin; use ...; Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |