in reply to passing env{} variable to child fails on linux,works on windows
I've just tried this on Fedora 17, 64 bit with perl v5.14 and it works for me, if that helps :)
Here's the test code I ran.
use v5.14; $ENV{TEST_FLAG}=1; my $test = `env`; say $test; say 'OK' if $test =~ /TEST_FLAG=/;
|
|---|