Help for this page

Select Code to Download


  1. or download this
    for my $command (@commands) {
        $manager->start and next;
    ...
        system( $command );
        $manager->finish;
    }
    
  2. or download this
    for my $command (@commands) {
        $manager->start and next;
    ...
        exec( $command );
        $manager->finish;
    }