summaryrefslogtreecommitdiffstats
path: root/Demo/cgi/cgi0.sh
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-10-16 21:01:27 (GMT)
committerGuido van Rossum <guido@python.org>2002-10-16 21:01:27 (GMT)
commit68077210c2588241fc5e4e16d83c083fa4103108 (patch)
tree118f4313ced095fd6b640ac6f9133e216692e2a5 /Demo/cgi/cgi0.sh
parent60a5d72908a8422d15452356892fe592c80dad33 (diff)
downloadcpython-68077210c2588241fc5e4e16d83c083fa4103108.zip
cpython-68077210c2588241fc5e4e16d83c083fa4103108.tar.gz
cpython-68077210c2588241fc5e4e16d83c083fa4103108.tar.bz2
Some really simple cgi examples. cgi3 is a MiniWiki.
Diffstat (limited to 'Demo/cgi/cgi0.sh')
-rwxr-xr-xDemo/cgi/cgi0.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/Demo/cgi/cgi0.sh b/Demo/cgi/cgi0.sh
new file mode 100755
index 0000000..5cefcd3
--- /dev/null
+++ b/Demo/cgi/cgi0.sh
@@ -0,0 +1,8 @@
+#! /bin/sh
+
+# If you can't get this to work, your web server isn't set up right
+
+echo Content-type: text/plain
+echo
+echo Hello world
+echo This is cgi0.sh