mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
10 lines
239 B
Perl
Executable File
10 lines
239 B
Perl
Executable File
# demo CGI program which just prints its environment
|
|
|
|
print "Content-type: text/plain; charset=iso-8859-1\n\n";
|
|
foreach $var (sort(keys(%ENV))) {
|
|
$val = $ENV{$var};
|
|
$val =~ s|\n|\\n|g;
|
|
$val =~ s|"|\\"|g;
|
|
print "${var}=\"${val}\"\n";
|
|
}
|