home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2002 August / INTERNET94.ISO / pc / software / windows / utils / watznew / data.cab / Environment Variables.pl next >
Encoding:
Text File  |  2000-06-18  |  332 b   |  11 lines

  1. # ------------------------------------------------------------------------------
  2. # ENVIRONMENT VARIABLES DUMP script by A.I.Studio / Igor Afanasyev
  3. # ------------------------------------------------------------------------------
  4.  
  5. print "MSG: ";
  6.  
  7. foreach $key (sort keys %ENV) {
  8.   print "<LI><B>$key</B> = ".$ENV{$key};
  9. }
  10.  
  11.