Monday, April 17, 2017

Perl find all modules on your INC path.

 perl -e 'foreach (@INC) {
    print `find $_ -type f -name "*.pm"`;
 }'

No comments:

Post a Comment