Your IP : 216.73.217.90


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