Help for this page

Select Code to Download


  1. or download this
    # Compiling
    using File::Spec
    using File::Basename
    ...
    
    # Running
    $some_path = dirname(File::Spec->rel2abs(__FILE__));
    
  2. or download this
    my $some_path;
    BEGIN { 
       $some_path = "/my/path";
    }
    use lib "$some_path/lib"; # Yeah, you don't even need the parenthesis,
    + Perl is clever enough for you
    # Edit : thanks dave_the_m for the correction