Possible Duplicate:
how to import multiple custom modules in our own perl script?
I have some packages. i want to import them all at once. Right now, i am doing like
use lib 'path to packages';
use package1;
use package2;
......
use packageN;
Which is working fine. but i want to import all packages in just a single command. Can anybody suggest me an easiest way to do it ?