Skip to content

Instantly share code, notes, and snippets.

@raster
Created October 11, 2011 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raster/1279154 to your computer and use it in GitHub Desktop.
Save raster/1279154 to your computer and use it in GitHub Desktop.
List Installed Perl Modules
#!/usr/bin/perl -w
use ExtUtils::Installed;
my $instmod = ExtUtils::Installed->new();
foreach my $module ($instmod->modules()) {
my $version = $instmod->version($module) || "???";
print "$module -- $version\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment