Help for this page

Select Code to Download


  1. or download this
    use lib 'lib';
    
  2. or download this
    BEGIN { unshift @INC, 'lib' };
    
  3. 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 $*
    
  4. or download this
    # in the shell script that starts your program:
    perl -w -I/home/vvh/program/lib /home/vvh/program/program.pl $*