in reply to Re^2: Simple Perl "Shell" Script on Windows XP to Run Multiple, Simultaneous Processes in Parallel
in thread Simple Perl "Shell" Script on Windows XP to Run Multiple, Simultaneous Processes in Parallel
The "&" starts the process in the background.system("$cmd $_ &") foreach @args;
|
|---|