I would like add path to windows using perl
"set path=%path%;c:\data"
so I have tried all these below without success:
1)
$a = `set path=%path%;c:\\utils`;
print $a;
2)
system("set path=%path%;c:\\utils");
can anybody help. what I did wrong ?
can anybody help? thanks in advance for your help.
"set path=%path%;c:\data"
so I have tried all these below without success:
1)
$a = `set path=%path%;c:\\utils`;
print $a;
2)
system("set path=%path%;c:\\utils");
can anybody help. what I did wrong ?
can anybody help? thanks in advance for your help.