Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Re: System Variables

by archen (Pilgrim)
on Oct 09, 2002 at 23:33 UTC ( [id://204065]=note: print w/replies, xml ) Need Help??


in reply to Re: System Variables
in thread System Variables

might be a little more informative if you do something such as:
foreach( keys %ENV ) { print "$_ = $ENV{$_} \n"; }
Since what varables are available may vary from system to system. Of course just wanting to know "system variables" is sort of a vague question...

Replies are listed 'Best First'.
Re^3: System Variables
by Aristotle (Chancellor) on Oct 10, 2002 at 00:01 UTC
    Or perhaps more economically,
    while(my ($key, $val) = each %ENV) { print "$key = $val\n"; }
    since you're not sorting the keys anyway.

    Makeshifts last the longest.

      I'm just feeling a bit silly...
      perl -e'print$_,$|--?$/:qq?$"=$"?for%ENV'

      -Blake

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://204065]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-25 19:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found