in reply to how to find what modules are available for use ?

Another way:

#!/sw/bin/perl use strict; use warnings; use ExtUtils::Installed; use Data::Dumper; my ($inst) = ExtUtils::Installed->new(); print Dumper my (@modules) = $inst->modules( "all" );
Update: There's an even better way to do it with this script by toolic.