Aside from trying
perldoc <module name>
individually for any CPAN module that takes my fancy or going through the file system and looking at the directories I have no idea what modules we have installed.
What's the easiest way to just get a big list of every CPAN module installed? From the command line or otherwise.
This is what I do:
perl -M{cpan_module}
If you don't receive any errors there is a good chance that the module is installed.
The following worked for me.
Here is yet another command-line tool to list all installed .pm files:
Find installed Perl modules matching a regular expression
Here's a Perl one-liner that will print out a list of installed modules:
Just make sure you have Data::Dumper installed.
Try
man perllocal
orperldoc perllocal
.