in reply to Installed modules and their versions

Use CPAN?

use CPAN (); for my $mod (CPAN::Shell->expand("Module","/./")){ next unless $mod->inst_file; my $ver = $mod->inst_version print $mod->id, ":\t", defined $ver ? $ver : "UNDEF", "\n"; }

Replies are listed 'Best First'.
Re^2: Installed modules and their versions
by bibliophile (Prior) on Jan 07, 2005 at 14:30 UTC
    Hmm. I've never played around with 'use CPAN'... but wouldn't that miss modules built locally?