| Current Path : /proc/thread-self/root/proc/self/root/usr/share/doc/perl-Env-Sanctify/examples/ |
| Current File : //proc/thread-self/root/proc/self/root/usr/share/doc/perl-Env-Sanctify/examples/system.pl |
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);\'');
}