Skip to content

Instantly share code, notes, and snippets.

@Discordanian
Created October 10, 2014 13:57
Show Gist options
  • Select an option

  • Save Discordanian/1e1aaf4de9fa1244dfc9 to your computer and use it in GitHub Desktop.

Select an option

Save Discordanian/1e1aaf4de9fa1244dfc9 to your computer and use it in GitHub Desktop.
List Perl Modules
#!/usr/bin/perl
use File::Find;
my @files;
find(
{
wanted => sub {
push @files, $File::Find::fullname
if -f $File::Find::fullname && /\.pm$/
},
follow => 1,
follow_skip => 2,
},
@INC
);
print join "\n", @files;
print "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment