--scott lutz <[EMAIL PROTECTED]> [010613 16:17]:
> Is there a command to list all installed modules?
> _________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
> 

Yes.  There are a few ways.

perldoc perlocal

Using ExtUtils::Installed like;

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

or pmtools
http://language.perl.com/misc/pmtools-1.00.tar.gz
-- 
Dave Watson

Reply via email to