How do I find what Perl modules are installed on my system?
Programming and Web Development
Assuming you have perldoc installed, simply typing perldoc perllocal will give you a nicely-formatted detailed list of all the installed Perl modules.For a simpler list that simply prints out the module names and their version numbers, there is another alterna...