Find out what perl modules you have currently

Some simple cpan trickery to save you some sanity on cloning a box, finding out what perl modules are installed will save you some hassle later when your scripts won’t run:

$ perl -MCPAN -e shell

cpan> install ExtUtils::Installed
cpan> quit

$ perldoc perllocal

will give you a list of what you have installed.

Comments are closed.