/ Published in: Bash
Quick Command to find all installed Perl Modules.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
perl -MFile::Find=find -MFile::Spec::Functions -Tlwe 'find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC'