I just inherited a perl installation with a ton of modules included in it and want to check each module to see which version is installed.I know that this cmd:find `perl -e 'print "@INC"'` -name '*.pm' -printwill show me the list of installed modules - but anyone know how to check each module for a version string?
Thanks for the help!
Look
at CPAN, the module. It has a nice, easy way to get most of what you
want.
try:
#>
perl -MCPAN -eshell
and
once you have it configured and running:
>
autobundle
will
create a snapshot file full of module names and their current
versions.
--mark
mills
