#!/usr/bin/perl -w # modver.pl 2003-08-22 07:05 CDT ybiC # commandline tool gens list of installed non-core Perl modules & their versions # shamelessly stolen from, I mean inspired by, jeffa & hacker use strict; use ExtUtils::Installed; my $delim = shift || ' '; my $inst = ExtUtils::Installed->new(); print $inst->version($_), $delim, $_, $/, for $inst->modules();