#!/usr/bin/perl# 20080322 - rem /local/ .. -wT and use diagnostics;use strict;#use diagnostics;$|++;print "Content-Type: text/html\n\n";print "<html><head><title>Printenv Script</title></head>\n";print "<body>\n";print map { "<p><b>$_</b> = $ENV{$_}</p>\n" } sort keys %ENV;print "</body></html>\n";
