in reply to Re: Re: Re: Local Module Usage
in thread Local Module Usage

I was just trying this. So would I just place them in directories like ./modules/HTML/Template.pm and then use lib './modules/'; ? Is there anything more to it? Thanks

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Local Module Usage
by gellyfish (Monsignor) on Jun 24, 2003 at 15:02 UTC

    I would actually recommend using:

    use FindBin; use lib "$FindBin::Bin/modules";
    As you will find that some systems don't give you the current directory you thought you had.

    /J\