Skip to content

Instantly share code, notes, and snippets.

@artem78
Last active April 25, 2021 14:36
Show Gist options
  • Save artem78/61c6548a630668b0d0a023874df4ad01 to your computer and use it in GitHub Desktop.
Save artem78/61c6548a630668b0d0a023874df4ad01 to your computer and use it in GitHub Desktop.
Shows list of all installed modules in Perl 5
use ExtUtils::Installed;
$installed = ExtUtils::Installed->new();
foreach $module ($installed->modules()){
printf "Module: %s\t\tVersion: %s\n", $module, $installed->version($module);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment