Aug 12
Show current version of an installed cpan module
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"'