Programming Languages
C#
Subjective
Mar 15, 2013
How do I set environment variables in Perl programs?
Detailed Explanation
you can just do something like this:
$path = $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';
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts