in reply to OK, tell me WHY, this is only a hello world script
Provided that Perl is installed and you know it's location, the following should work%which perl %whereis perl
--perlplexer#!/perl/is/here/perl -w use strict; use CGI; my $q = new CGI; print $q->header(); print "<b>Howdy!</b>";
|
|---|