Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
@INC在 Strawberry Perl 中,如何在不更改脚本的情况下永久更改?
@INC
我知道-I,但不想每次都调用该开关。
-I
要添加路径,请将环境变量 PERL5LIB 设置为这些路径。
注意:这将影响您运行的所有 Perl 安装。
Howto:右键单击(我的)计算机,属性,高级,环境变量,(顶部)新建。您可能必须重新启动已经运行的控制台才能获得更改。
或者,您可以使用:
use lib /my/other/direcotry
或者
push (@INC , /my/other/direcotry)
来改变 的值@INC。