Hello All, I have a query regarding using lib modules
1) I've some custom modules which uses various default routines like "Net::rsh" etc Now, i want to pack all default routines into my lib and use that lib in my custom modules i.e package MyModule; use lib "lib/test";(here i am placing my Rsh.pm etc modules and some of my custom modules) use Rsh; Is this possible??? Please let me know how to go with this approach My motive is to create a main PM file which will call all small PM files(custom and defaults) Thanks in Advance!