|
|
| Welcome to the Monastery | |
| PerlMonks |
Re: EXPORT variablesby friedo (Prior) |
| on Jun 09, 2008 at 22:04 UTC ( #691110=note: print w/ replies, xml ) | Need Help?? |
|
export is a bash builtin and not meant to be called from Perl. If you want to altar your process's environment variables, you can do it by modifying the %ENV hash. (See perlvar). For example, $ENV{PATH} = '/home/abc/xyz/bin:' . $ENV{PATH};
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||