Aug 12

Show current version of an installed cpan module

Category: Linux,Perl   — Published by tengo on August 12, 2010 at 3:58 am

Often, you may ask yourself what version of a specific perl cpan module you've got installed on your system. So here is how to find out what version a perl module is, as an example on CGI.pm:

perl -e 'use CGI; print $CGI::VERSION."\n"'