Here is the script (I found it elsewhere, and did not write it myself):
use ExtUtils::Installed; my $instmod = ExtUtils::Installed->new(); foreach my $module ($instmod->modules()) { my $version = $instmod->version($module) || "???"; print "$module -- $version\n"; }
Here is the relevant output:
[EMAIL PROTECTED] perlstuff]$ ./findmodules Perl -- 5.8.1
However I have many up to date modules installed. I searched Redhat's Bugzilla for "fedora perl modules" but didn't turn up anything there.
Any advice would be appreciated!
Thanks, Clint -- Clint <[EMAIL PROTECTED]>
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]