Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kristiannissen/dd262b808bc0e1f6ae28572661d9f5c8 to your computer and use it in GitHub Desktop.

Select an option

Save kristiannissen/dd262b808bc0e1f6ae28572661d9f5c8 to your computer and use it in GitHub Desktop.
Print all installed modules
use File::Find;
foreach my $dir (@INC){
find sub {
print "$File::Find::name<br>" if /\.pm$/;
}, $dir;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment