Help for this page

Select Code to Download


  1. or download this
    run(open => './path/to/', do=> 'tell what to do', save => './path1/to'
    +);
    
  2. or download this
    
    sub run{
    ...
       $self->_open_it_and_run_it(open => $arg{open});
    }
    }
    
  3. or download this
    sub _open_it_and_run_it{
    my ($self,%arg) = @_;
    ...
     }
     close IN:
    }
    
  4. or download this
    run(open =>'./', ....);
    
  5. or download this
    run(open =>'./dir/', ....);