Knowledgebase
What Perl modules are installed on my machine?
Problem:
What Perl modules are installed on my machine?Solution:
You can find what Perl modules are installed on your machine by using the following command:find `perl -e 'print "@INC"'` -name '*.pm' -print > perlmodules
Login to your server through SSH and type the command above. This will create a file called "perlmodules" in whatever directory you are in so you can open it and search for a particular module if needed.

