Feeds:
Posts
Comments

Archive for the ‘Perl’ Category

#!/usr/bin/perl
use strict;
use warnings;
my $path = “toolPath”;
print $ENV{‘PATH’},”\n”;
$ENV{‘PATH’} = $ENV{‘PATH’}.”:”.$path;
print $ENV{‘PATH’},”\n”;

It is not possible to change enviromental variables for subsequent processes using Perl.

Read Full Post »