http://qs321.pair.com?node_id=455299


in reply to How do you audit what Perl modules you use?

use strict; use CPANPLUS::Backend; my $cpan = CPANPLUS::Backend->new(); foreach my $module ($cpan->installed()) { print $module->name(), "\n"; }