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
17 lines
287 B
#!/usr/local/ActivePerl-5.6/bin/perl -w
|
|
#
|
|
# env.pl
|
|
#
|
|
# This script dumps the environment variables in HTML format
|
|
|
|
use strict;
|
|
use warnings;
|
|
$|=1;
|
|
|
|
print "Content-type:text/html\n\n";
|
|
|
|
foreach my $var (sort keys %ENV) {
|
|
print $var . "=" . $ENV{$var} . "<br>\n";
|
|
}
|
|
|
|
|