diff options
author | Guido van Rossum <guido@python.org> | 2002-10-16 21:01:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-10-16 21:01:27 (GMT) |
commit | 68077210c2588241fc5e4e16d83c083fa4103108 (patch) | |
tree | 118f4313ced095fd6b640ac6f9133e216692e2a5 /Demo/cgi/cgi0.sh | |
parent | 60a5d72908a8422d15452356892fe592c80dad33 (diff) | |
download | cpython-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-x | Demo/cgi/cgi0.sh | 8 |
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 |