diff options
| author | (no author) <(no author)@unknown> | 2001-05-04 21:54:25 +0000 |
|---|---|---|
| committer | (no author) <(no author)@unknown> | 2001-05-04 21:54:25 +0000 |
| commit | ad2dd84025f628d29200b5a9a41d654be678aa6f (patch) | |
| tree | 35a838b6e9d6510a91e386728e78b4a81cb55781 /docs/cgi-examples/printenv | |
| parent | f83672781de25207442ff908258219de1d103062 (diff) | |
| download | httpd-RSE.tar.gz | |
This commit was manufactured by cvs2svn to create branch 'RSE'.RSE
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/RSE@88989 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/cgi-examples/printenv')
| -rw-r--r-- | docs/cgi-examples/printenv | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/docs/cgi-examples/printenv b/docs/cgi-examples/printenv deleted file mode 100644 index 207074361a..0000000000 --- a/docs/cgi-examples/printenv +++ /dev/null @@ -1,13 +0,0 @@ -#!/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"; -} - |
