vinoth.ree has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to set PERL5LIB environment variable in windows10 with multiple paths, like below, export PERL5LIB="${HOMEDRIVE}\\Perl64\\lib;${HOMEDRIVE}\\Perl64\\site\\lib" but the ':' character after the Drive is getting removed from the PERL5LIB value like looks like C \Perl64\lib;C \Perl64\site\lib and modules are not getting loaded.
Is it windows behavior to remove the ':' character? Actually its a common shell script will setup the environment before I invoke the actual bunch of perl scripts, otherwise I would have used use lib "Path" inside the script to load the modules.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Windows set PERL5LIB environment variable
by VinsWorldcom (Prior) on May 06, 2021 at 10:35 UTC | |
by vinoth.ree (Monsignor) on May 06, 2021 at 13:06 UTC | |
by VinsWorldcom (Prior) on May 06, 2021 at 14:07 UTC | |
Re: Windows set PERL5LIB environment variable
by AnomalousMonk (Archbishop) on May 06, 2021 at 10:07 UTC | |
by Anonymous Monk on May 06, 2021 at 14:12 UTC |