in reply to Re: list of all the $env variables
in thread list of all the $env variables
use CGI qw(header); print header('text/plain'); for (sort keys %ENV) { print "$_ => $ENV{$_}\n"; }
-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: •Re: Re: list of all the $env variables
by eXile (Priest) on May 08, 2004 at 20:23 UTC | |
by defyance (Curate) on May 08, 2004 at 21:34 UTC | |
by Juerd (Abbot) on May 08, 2004 at 22:33 UTC | |
by davido (Cardinal) on May 09, 2004 at 03:40 UTC |