| Current Path : /proc/self/root/proc/self/root/proc/8644/root/usr/share/doc/apache2-doc/cgi-examples/ | 
| Current File : //proc/self/root/proc/self/root/proc/8644/root/usr/share/doc/apache2-doc/cgi-examples/printenv | 
#!/usr/bin/perl
##
##  printenv -- 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";
}