Perl Upgrades
It is that time again - Perl upgrades. Some quick notes from IBM Developer works:
To create a list of outdated modules:
# perl -MCPAN -e 'CPAN::Shell->r'
To update all outdated modules:
# perl -MCPAN -e 'CPAN::Shell->install(CPAN::Shell->r)'
To create a list of all installed modules:
# perl -MCPAN -e autobundle
[composed and posted with ecto]