#!/usr/bin/perl -w # show all non-standard installed perl modules use strict; use ExtUtils::Installed; my $inst = ExtUtils::Installed->new(); foreach my $mod ($inst->modules () ) { my $ver = $inst->version ($mod); $ver = ($ver) ? $ver : 'NONE'; print "Module : $mod version $ver\n"; }