Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
287 B

  1. #!/usr/local/ActivePerl-5.6/bin/perl -w
  2. #
  3. # env.pl
  4. #
  5. # This script dumps the environment variables in HTML format
  6. use strict;
  7. use warnings;
  8. $|=1;
  9. print "Content-type:text/html\n\n";
  10. foreach my $var (sort keys %ENV) {
  11. print $var . "=" . $ENV{$var} . "<br>\n";
  12. }