Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I set an environment variable in Perl?

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

share|improve this question

2 Answers

up vote 18 down vote accepted

You can do it like this:

$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.

share|improve this answer
$ENV{'HOME'} = '/path/to/new/home';

Also see perlrun

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.