- or download this
use lib 'lib';
- or download this
BEGIN { unshift @INC, 'lib' };
- or download this
# in the shell script that starts your program:
PERL5LIB=/home/vvh/program/lib
export PERL5LIB
perl -w /home/vvh/program/program.pl $*
- or download this
# in the shell script that starts your program:
perl -w -I/home/vvh/program/lib /home/vvh/program/program.pl $*