programming

How do I list all installed Perl modules?

To list all of the perl modules installed, you can run the command below:

perl -MFile::Find=find -MFile::Spec::Functions -Tlwe ‘find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC’

Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

To Top