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

You can modify it to:
system("$cmd $_ &") foreach @args;
The "&" starts the process in the background.
  • Comment on Re^3: Simple Perl "Shell" Script on Windows XP to Run Multiple, Simultaneous Processes in Parallel
  • Download Code