Linux / Unix06 May 2008 03:49 pm
Listing installed Perl Modules
Simple one line command for listing all installed Perl modules
CODE:
-
perl -MExtUtils::Installed -e'my $inst = ExtUtils::Installed->new(); print $_, $/ for $inst->modules'