Search Help:  
 
Enter keywords to search help.

Which version of Perl does Yahoo! support?

For up-to-date information on the current supported version of Perl, run the script below.

#!/usr/bin/perl

$command='perl -v';
$title = "Perl Version";

print "Content-type: text/html\n\n";
print "<html><head><title>$title</title></head>\n<body>\n\n";

## START HTML content
print "<h1>$title</h1>\n";
print "<p>";
print (exec $command);
## END HTML CONTENT

print "\n\n</body></html>";

Was this article helpful?

Yes   No
Click to contact Customer Care for further assistance.