I have many standalone scripts. The only thing they share, is that they use() a large set of CPAN modules (that each export several functions). I would like to centralize th
File import.pl:
require blah; blah->import; require blubb; blubb->import;
Skripts:
#!/usr/bin/perl do 'import.pl' ...
Patrick