本文介绍了如何在Perl中设置环境变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在Perl中设置环境变量?

How do I set an environment variable in Perl?

我想将 $ HOME 设置为不同的目录比默认值。

I want to set $HOME to a different directory than the default.

推荐答案

你可以这样做:

$ENV{HOME} = 'something different';

但请注意,这只会在脚本的其余部分产生影响。当您的脚本退出时,。

But please note that this will only have an effect within the rest of your script. When your script exits, the calling shell will not see any changes.

As perldoc -v%ENV 说: / p>

As perldoc -v %ENV says:

这篇关于如何在Perl中设置环境变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 10:09