在Windows命令行中设置PERL5LIB的多个路径

时间:2014-03-13 17:11:38

标签: windows perl

所以我使用这个

将PERL5LIB设置到Windows命令行中的某个目录
set PERL5LIB = c:\path\to\dir

我想知道是否有办法在同一命令行中为PERL5LIB设置多个路径。

set PERL5LIB = c:\path\to\dir1
set PERL5LIB = c:\path\to\dir2
set PERL5LIB = c:\path\to\dir3
etc. 

1 个答案:

答案 0 :(得分:1)

通常,您可以用分号分隔多个路径。

set PERL5LIB = c:\path\to\dir1;c:\path\to\dir2;c:\path\to\dir3