in reply to Re: setting perl ENV from filein thread setting perl ENV from file
my ($var, $value) = split(/=/, $_); [download]
Better make that
my ($var, $value) = split(/=/, $_, 2); [download]
or else it will break if a value contains a =.
Abigail