Here are some of my own Perl scripts.
The purpose of this script, is to see if the cgi module is installed. It is also my first perl script :D
#!/usr/bin/perl use strict; use warnings; use CGI; my $cgi = CGI->new(); print $cgi->header; print <<'END'; <P>Yes! The <CODE>cgi</CODE> module is installed.</P> ENDSee it in action! Or go back to the homepage?