Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'View a summary of installed Perl modules' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
View a summary of installed Perl modules
Authored by: rickg17 on Jul 08, '03 02:10:39PM

Or you can type perldoc perllocal in the Terminal....



[ Reply to This | # ]
View a summary of installed Perl modules
Authored by: mauricev on Jul 10, '03 03:18:54AM
Or you can type perldoc perllocal in the Terminal...

This just spits out gibberish.

I have come across the follow perl program elsewhere online which does work properly..

#!/usr/local/bin/perl use ExtUtils::Installed;
my $instmod = ExtUtils::Installed->new();
foreach my $module ($instmod->modules()) {
my $version = $instmod->version($module) || "???";
print "$module -- $version\n";
}


[ Reply to This | # ]