Most modules have manpages embedded within the module
itself. If that is the case, you can use the pod2man
script to view the manpage:
% pod2man module.pm | nroff -man | more
You can use cgi-lib.pl
(https://www.bio.cam.ac.uk/web/form.html),
which is not object oriented, because it was designed for Perl 4.
But, using the Perl 5 O-O libraries is a piece of cake! Here
is a simple example that uses CGI Lite
(https://bytor.engr.wisc.edu/pub/perl/cpan/authors/
id/SHGUN/CGI_Lite-1.62.pm.gz) to print out form data:
#!/usr/local/bin/perl5
use CGI_Lite;
print "Content-type: text/plain", "\n\n";
$cgi = new CGI_Lite ()
$cgi->parse_form_data ();
$cgi->print_form_data ();
exit (0);