Help for this page

Select Code to Download


  1. or download this
    for (my $x = 0; $x < $total_number_runs ; $x++) {
        exec("shell_script < input_file");
    }
    
  2. or download this
    for my $x (1..$total_number_of_runs) {
        my $pid = fork;
    ...
        }
        exec("shell_script < $input_file");
    }