#!/usr/bin/perl # Available under BSD License. # See url http://www.cyberciti.biz/faq/how-can-i-find-out-perl-version/ $command=`perl -v`; $title = "Perl Version"; print "Content-type: text/html\n\n"; print "$title"; print "

$title

\n"; print $command; print "";