http://www.perlmonks.org?node_id=351768


in reply to Re: •Re: Re: list of all the $env variables
in thread list of all the $env variables

Kind of OT, but you could even use map, it's fun stuff.

#!/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

    Kind of OT, but you could even use map, it's fun stuff.

    What happened to good old laziness?

    #!/usr/bin/perl use Data::Dumper; print $/, Dumper \%ENV;

    Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

      Or from the command line:

      perl -MData::Dumper -e 'print Dumper \%ENV'
      That should do the trick. (Adjust quotes to taste.)


      Dave