Perl Programming Question:

How do I set environment variables in Perl programs?

Tweet Share WhatsApp

Answer:

you can just do something like this:
$ENV{'PATH'} = '...';
As you may remember, "%ENV" is a special hash in Perl that contains the value of all your environment variables.
Because %ENV is a hash, you can set environment variables just as you'd set the value of any Perl hash variable. Here's how you can set your PATH variable to make sure the following four directories are in your path::

$ENV{'PATH'} = '/bin:/usr/bin:/usr/local/bin:/home/yourname/bin';

Download Perl Programming PDF Read All 46 Perl Programming Questions
Previous QuestionNext Question
Why do you use Perl?Which of these is a difference between C++ and Perl?