aboutsummaryrefslogtreecommitdiff
path: root/doc/examples/cgi-bin/simple.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/cgi-bin/simple.cgi')
-rw-r--r--doc/examples/cgi-bin/simple.cgi14
1 files changed, 0 insertions, 14 deletions
diff --git a/doc/examples/cgi-bin/simple.cgi b/doc/examples/cgi-bin/simple.cgi
deleted file mode 100644
index 421924c3..00000000
--- a/doc/examples/cgi-bin/simple.cgi
+++ /dev/null
@@ -1,14 +0,0 @@
1#!/bin/sh
2
3
4
5echo -ne "Content-type: text/html\r\n\r\n"
6
7echo -e "<HTML>\n"
8echo -e "<BODY>\n"
9
10echo -e "THis is a simple cgi file\n"
11echo -e "$QUERY_STRING"
12echo -e "</body>"
13echo -e "</html>"
14