You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
188 B
Perl

#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "<H2>Server Environment Values</H2>";
foreach $env_var (keys %ENV)
{
print "$env_var = $ENV{$env_var} <BR>";
}