From: http://smcv.pseudorandom.co.uk/ Date: Sat, 21 May 2011 18:27:15 +0000 (+0000) Subject: Added a comment X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/2f1f50e6eaf30de3e8786e9d99ea89d9fc17871f Added a comment --- diff --git a/doc/forum/Need_help_setting_up_ikiwiki_CGI/comment_3_cbc20267fe5f0531f63db881d50596d1._comment b/doc/forum/Need_help_setting_up_ikiwiki_CGI/comment_3_cbc20267fe5f0531f63db881d50596d1._comment new file mode 100644 index 000000000..4e645ef0b --- /dev/null +++ b/doc/forum/Need_help_setting_up_ikiwiki_CGI/comment_3_cbc20267fe5f0531f63db881d50596d1._comment @@ -0,0 +1,20 @@ +[[!comment format=mdwn + username="http://smcv.pseudorandom.co.uk/" + nickname="smcv" + subject="comment 3" + date="2011-05-21T18:27:15Z" + content=""" +Here is a simple CGI script: + + #!/bin/sh + printf \"Content-type: text/plain\r\n\" + printf \"\r\n\" + printf \"Hello, world!\r\n\" + +Here is a simple Perl CGI script: + + #!/usr/bin/perl + print \"Content-type: text/plain\r\n\"; + print \"\r\n\"; + print \"Hello, world!\r\n\"; +"""]]