aboutsummaryrefslogtreecommitdiff
path: root/doc/forum/Need_help_setting_up_ikiwiki_CGI/comment_3_cbc20267fe5f0531f63db881d50596d1._comment
diff options
context:
space:
mode:
Diffstat (limited to 'doc/forum/Need_help_setting_up_ikiwiki_CGI/comment_3_cbc20267fe5f0531f63db881d50596d1._comment')
-rw-r--r--doc/forum/Need_help_setting_up_ikiwiki_CGI/comment_3_cbc20267fe5f0531f63db881d50596d1._comment20
1 files changed, 20 insertions, 0 deletions
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\";
+"""]]