Help for this page

Select Code to Download


  1. or download this
    use File::chdir qw( $CWD );
    use File::Slurp qw( read_dir );
    ...
        local $CWD = $_;
        system '/somepath/foo.exe';
    }
    
  2. or download this
    use File::Slurp qw( read_dir );
    
    ...
        system '/somepath/foo.exe';
        chdir '..' or die;
    }