/ Published in: Perl
This is a handy little bit that will show you all of the installed modules on the system.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#!/usr/bin/perl use ExtUtils::Installed; my $instmod = ExtUtils::Installed->new(); foreach my $module ($instmod->modules()) { my $version = $instmod->version($module) || "???"; }