http://www.perlmonks.org?node_id=1002348


in reply to Re: use lib in cgi env
in thread use lib in cgi env

the weird thing is that i am not able to use a relative lib because he is mixing the pathes.. is there any kind of priority or something like this in which order perl looks for the modules in the known folder (@INC)?
$perlig =~ s/pec/cep/g if 'errors expected';

Replies are listed 'Best First'.
Re^3: use lib in cgi env
by Corion (Patriarch) on Nov 05, 2012 at 15:41 UTC

    Yes - see perlvar for @INC, which links to require, which shows the (pseudo-)code that require uses. It looks through @INC in order of entry appearance.

      looks good. thanks!
      $perlig =~ s/pec/cep/g if 'errors expected';