http://www.perlmonks.org?node_id=48652


in reply to List of installed modules

i use this little script to check installed modules (and if they need to be updated)
requires CPAN.pm
#!/usr/bin/perl -w use CPAN; for my $mod (CPAN::Shell->expand("Module","/./")){ next unless $mod->inst_file; print $mod->id, '(', $mod->inst_version, ') '; unless($mod->uptodate()) { print "\t\t#( V. ",$mod->cpan_version, " available on CPAN +)"; } print "\n"; }