- or download this
system('echo $PATH');
- or download this
system('/bin/sh', '-c', 'echo $PATH');
- or download this
system('echo', '/foo:/bar');
- or download this
system('echo', '$PATH');
- or download this
system('echo $PATH');
- or download this
system('/bin/sh', '-c', 'echo $PATH');
- or download this
system('echo', $ENV{PATH});
- or download this
system('PATH=/foo prog arg');
- or download this
local $ENV{PATH} = '/foo';
system('prog', 'arg');