所以我使用这个
将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.
答案 0 :(得分:1)
通常,您可以用分号分隔多个路径。
set PERL5LIB = c:\path\to\dir1;c:\path\to\dir2;c:\path\to\dir3