commit | 68077210c2588241fc5e4e16d83c083fa4103108 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Oct 16 21:01:27 2002 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Oct 16 21:01:27 2002 +0000 |
tree | 118f4313ced095fd6b640ac6f9133e216692e2a5 | |
parent | 60a5d72908a8422d15452356892fe592c80dad33 [diff] [blame] |
Some really simple cgi examples. cgi3 is a MiniWiki.
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