in reply to Re: setting perl ENV from file
in thread setting perl ENV from file

my ($var, $value) = split(/=/, $_);

Better make that

my ($var, $value) = split(/=/, $_, 2);

or else it will break if a value contains a =.

Abigail