Some perl module management scripts

This first script will list the perl modules you have installed and the version number. #!/usr/bin/perl # use ExtUtils::Installed; my $instmod = ExtUtils::Installed->new(); foreach my $module ($instmod->modules()) { my $version = $instmod->version($module) || “???”; print Read more