in reply to discovering installed packages

Hack from Perl Hacks

Maybe you can create a personal bundle of modules, and then install the Bundle in the rest of machines

To do this, create an empty package with the modules you want listed in the POD "contents" section

package Bundle::Personal::Modules 1; __END__ =head1 NAME Bundle::Personal::Modules =head1 SYNOPSIS perl -MCPAN -e 'install Bundle::Personal::Modules' =head1 CONTENTS #Here your modules... Data::Dumper Test::Pod # etc...
To install the modules in the rest of machines:
perl -MCPAN -e 'install Bundle::Personal::Modules'

citromatik