]> sipb.mit.edu Git - ikiwiki.git/blob - doc/forum/Need_help_setting_up_ikiwiki_CGI/comment_3_cbc20267fe5f0531f63db881d50596d1._comment
Change Projects link to point to projects DB
[ikiwiki.git] / doc / forum / Need_help_setting_up_ikiwiki_CGI / comment_3_cbc20267fe5f0531f63db881d50596d1._comment
1 [[!comment format=mdwn
2  username="http://smcv.pseudorandom.co.uk/"
3  nickname="smcv"
4  subject="comment 3"
5  date="2011-05-21T18:27:15Z"
6  content="""
7 Here is a simple CGI script:
8
9     #!/bin/sh
10     printf \"Content-type: text/plain\r\n\"
11     printf \"\r\n\"
12     printf \"Hello, world!\r\n\"
13
14 Here is a simple Perl CGI script:
15
16     #!/usr/bin/perl
17     print \"Content-type: text/plain\r\n\";
18     print \"\r\n\";
19     print \"Hello, world!\r\n\";
20 """]]