foreach ( 1 .. 5 ) { my $pid = fork() // die "fork() failed: $!"; if ( $pid ) { say "parent just spawned child $pid"; } else { exec "DoThis.exe"; } }