Help for this page

Select Code to Download


  1. or download this
    for (1..5) {
       system('start DoThis.exe');
    }
    
  2. or download this
    my @pids;
    for (1..5) {
    ...
    }
    
    waitpid($_, 0) for @pids;