in reply to CPAN list?

try this:
#!/usr/bin/perl use ExtUtils::Installed; my $i = ExtUtils::Installed->new(); my (@modules) = $i->modules(); for $m (sort @modules) { print "$m ", $i->version($m), $/; }
or perldoc perllocal
Boris

Replies are listed 'Best First'.
Re: Re: CPAN list?
by sweyhrich (Initiate) on Jan 31, 2004 at 23:29 UTC
    Most humble thanks, oh wise ones. That worked!