in reply to Re: 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

Thanks, but where's the background execution part?

Jim

  • Comment on Re^2: Simple Perl "Shell" Script on Windows XP to Run Multiple, Simultaneous Processes in Parallel

Replies are listed 'Best First'.
Re^3: Simple Perl "Shell" Script on Windows XP to Run Multiple, Simultaneous Processes in Parallel
by laminee (Novice) on Jul 29, 2009 at 06:03 UTC
Re^3: Simple Perl "Shell" Script on Windows XP to Run Multiple, Simultaneous Processes in Parallel
by elTriberium (Friar) on Jul 30, 2009 at 00:04 UTC
    You can modify it to:
    system("$cmd $_ &") foreach @args;
    The "&" starts the process in the background.