#!/usr/bin/perl # test Perl CGI script # visiting http://foobar.com/test-cgi.pl and should see "Hello wold" print "Content-type: text/plain\r\n"; print "\r\n"; print "Hello world!\r\n";