Skip to content

Instantly share code, notes, and snippets.

@calvinf
Created November 24, 2010 22:31
Show Gist options
  • Save calvinf/714551 to your computer and use it in GitHub Desktop.
Save calvinf/714551 to your computer and use it in GitHub Desktop.
Find All Perl Modules
perl -MFile::Find=find -MFile::Spec::Functions -Tlwe \
'find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment