#!/usr/bin/perl -wuse strict;print "Content-Type: text/plain\n";print "\n";foreach (sort keys %ENV) { print "$_ = $ENV{$_}\n";}