in reply to Re: system/exec and %ENV
in thread system/exec and %ENV
#!/usr/bin/perl system "date"; #system 'ls -l $HOME |awk \'{ print $8 }\''; #exec "date"; #print "$ENV{'PATH'}\n"; #$ENV{'PATH'} = "/home/athampan:$ENV{'PATH'}"; #print "$ENV{'PATH'}\n"; foreach $var (sort keys %ENV) { print "$var => $ENV{$var}\n" }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: system/exec and %ENV
by Hue-Bond (Priest) on Jul 16, 2008 at 06:37 UTC | |
|
Re^3: system/exec and %ENV
by ikegami (Patriarch) on Jul 16, 2008 at 05:57 UTC | |
by eosbuddy (Scribe) on Jul 16, 2008 at 06:06 UTC | |
|
Re^3: system/exec and %ENV
by Fletch (Bishop) on Jul 16, 2008 at 12:56 UTC | |
by eosbuddy (Scribe) on Jul 16, 2008 at 17:23 UTC |