- or download this
use ExtUtils::Installed;
my $installed = ExtUtils::Installed->new();
...
print "didn't find it.";
}
exit;
- or download this
print "<p>Finding all installed modules...<br>\n";
my $installed2 = ExtUtils::Installed->new();
...
my $version = $installed2->version($module) || "<no version info>";
print("Found module $module Version $version<br>\n");
}
- or download this
Finding all installed modules...
Found module Perl Version 5.10.0
Script finished.