in reply to Using perl to speed up a series of bash commands by transforming them into a single command that will run everything in parallel.

Just let me note that in bash, & is a command separator just like ; is, so you can simply write

cmd1 & cmd2 &
instead of
( (cmd1 ) &); ( (c cmd2 ) &);
  • Comment on Re: Using perl to speed up a series of bash commands by transforming them into a single command that will run everything in parallel.
  • Select or Download Code