my $rcfile = 'testrc'; # sets TESTEX to "test!" if(open(CHILD_TO_READ, ". $rcfile; env | sort |")) { while () { my ($key, $val) = split '='; $ENV{$key} = $val; }; } print $ENV{TESTEX};