The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Env::Sanctify;

my $sanctified = { PATH => $ENV{PATH} };

{ 
  my $sanctify = Env::Sanctify->sanctify( env => $sanctified, sanctify => [ '.*' ] );

  system("$^X " . '-MData::Dumper -e \'warn Dumper(\%ENV);\'');
}