Help for this page

Select Code to Download


  1. or download this
        ## untested, just a guess
        my @path;
    ...
        push @paths, "/some/other/path";
    
        $ENV{PATH} = join( ':', @paths );
    
  2. or download this
         delete $ENV{PATH};
         $ENV{PATH} = "/path/to/tool;/some/other/path";