navrattanbansal has asked for the wisdom of the Perl Monks concerning the following question:
I am new for Perl I want to ask one question. I have around 50 custom packages which i am using in my Perl script. I want to import all .pm packages in my Perl script in an easy way. Right now i have to import each package individually. So Is there any way to do so??
Right Now i am doing like:But I want some easy way Likeuse pack1; use pack2; ...... use pack50;
This is just an example from my way but you can give me any solution.use Pack*;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How can i do one liner import multiple custom .pm files in my perl script
by chromatic (Archbishop) on Apr 10, 2012 at 06:21 UTC | |
by Anonymous Monk on Apr 10, 2012 at 08:52 UTC | |
by MidLifeXis (Monsignor) on Apr 10, 2012 at 12:39 UTC | |
|
Re: How can i do one liner import multiple custom .pm files in my perl script
by Anonymous Monk on Apr 10, 2012 at 06:22 UTC |