#!/usr/local/bin/perl print "Content-type: text/html\n\n"; print "

Hello World

\n"; #### [root@www cgi-bin]# ./test.pl : bad interpreter: No such file or directory #### [root@www cgi-bin]# perl test.pl Content-type: text/html

Hello World

##
## #!/usr/local/bin/perl -w print "Content-type: text/html\n\n"; print "

Hello World

\n";