in reply to Re: Re: Re: list of all the $env variables
in thread list of all the $env variables
#!/usr/bin/perl -w use CGI qw(header); print header('text/plain'); print map { "$_ => $ENV{$_}\n" } sort keys %ENV;
--
A conclusion is simply the place where someone got tired of thinking.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: ÂRe: Re: list of all the $env variables
by Juerd (Abbot) on May 08, 2004 at 22:33 UTC | |
by davido (Cardinal) on May 09, 2004 at 03:40 UTC |