Skip to content

Instantly share code, notes, and snippets.

@vjyanand
Created March 2, 2012 19:48
Show Gist options
  • Save vjyanand/1960835 to your computer and use it in GitHub Desktop.
Save vjyanand/1960835 to your computer and use it in GitHub Desktop.
List Installed Perl Modules
perl -MExtUtils::Installed -e 'my $Inst = ExtUtils::Installed->new();my @Modules = $Inst->modules(); for my $module (@Modules) { print "$module " . $Inst->version($module) . "\n"; } '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment