in reply to Re: PATH is not setting - PERL
in thread PATH is not setting - PERL

have a feeling that you're not modifying the %ENV that you think you are - i.e., it is not in the proper scope and you may be modifying the hash in a disjoint scope.

What other %ENV is there in Perl?

Replies are listed 'Best First'.
Re^3: PATH is not setting - PERL
by kyle (Abbot) on Oct 15, 2007 at 18:16 UTC

    What other %ENV is there in Perl?

    You could make a lexical named %ENV, and it would mask %main::ENV. That doesn't appear to be the case here, but that's another one.