head     1.1;
branch   1.1.1;
access   ;
symbols  start:1.1.1.1 source:1.1.1;
locks    ; strict;
comment  @# @;


1.1
date     2002.08.14.03.06.15;  author pools2;  state Exp;
branches 1.1.1.1;
next     ;

1.1.1.1
date     2002.08.14.03.06.15;  author pools2;  state Exp;
branches ;
next     ;


desc
@@



1.1
log
@Initial revision
@
text
@#!/usr/local/bin/perl
##
##  printenv -- demo CGI program which just prints its environment
##

print "Content-type: text/plain\n\n";
foreach $var (sort(keys(%ENV))) {
    $val = $ENV{$var};
    $val =~ s|\n|\\n|g;
    $val =~ s|"|\\"|g;
    print "${var}=\"${val}\"\n";
}

@


1.1.1.1
log
@Apache Easy 0.0.1
@
text
@@
