所以我在windows命令行中将perl5lib设置为一个特定的目录
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.
最佳答案
通常,您可以用分号分隔多条路径。
set PERL5LIB = c:\path\to\dir1;c:\path\to\dir2;c:\path\to\dir3
关于windows - 在Windows命令行中设置PERL5LIB的多个路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22385975/