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


in reply to Re: Perl @INC Error
in thread Perl @INC Error

To follow up on your suggestion, I recommend that zee3b put the following in a cron job:
* * * * * echo $PERL5LIB * * * * * echo $PERL5OPT

And if one isn't as expected just set the appropriate variable in crontab (but above any cron jobs).

Replies are listed 'Best First'.
Re^3: Perl @INC Error
by McA (Priest) on Aug 15, 2013 at 15:42 UTC

    Another solution is to call the script in the cron this way:

    bash -l -c "perl /path/to/script.pl"

    With that you assure that the environment is build like the one you have on the console, where you tested your perl script.

    McA