Help for this page

Select Code to Download


  1. or download this
    #!/bin/sh
    perl -I /some/special/libpath:/another/special/libpath "$@"
    
  2. or download this
    #!/bin/sh
    exec perl -I /some/special/libpath:/another/special/libpath "$@"
    
  3. or download this
    #!/bin/sh
    exec /usr/local/perl-5.42.99/bin/perl -I /some/special/libpath:/anothe
    +r/special/libpath "$@"
    
  4. or download this
    #!/usr/local/perl-5.42.99/bin/perl 
    use lib '/some/special/libpath','/another/special/libpath';
    
    # rest of the script here, unmodified
    
  5. or download this
    #!/usr/local/perl-5.42.99/bin/perl 
    use lib '/some/special/libpath','/another/special/libpath';
    require '/path/to/real/script.pl';
    
  6. or download this
    #!/usr/local/perl-5.42.99/bin/perl 
    use lib '/some/special/libpath','/another/special/libpath';
    ...
        die "Could not parse script: $@" if $@;
        die "Could not read script: $!";
    }