http://qs321.pair.com?node_id=11120768


in reply to Re^2: FindBin and Tainted
in thread FindBin and Tainted

Sure, you can use a copy, to be declared outside of the BEGIN block:

use strict; use warnings; use FindBin 1.51 qw( $RealBin ); my $untainted_bin; BEGIN { ($untainted_bin) = $RealBin =~ /(.+)/; } use lib "$untainted_bin/../lib"; use MyLib;