in reply to Using Perl Modules

I don't know about PERL5LIB, but the use lib pragma should be able to help you. It looks like:

use lib '/path/to/your/modules';

That adds the path you enter to @INC for the script you put it in.

To err is human, to moo bovine.