Skip to main content
3 of 3
deleted 29 characters in body
Jeff Schaller
  • 68.8k
  • 35
  • 122
  • 265

How to find max parallel execution limit?

Is there any limit for parallel execution? if yes, how to find out the maximum limit?

I am creating a script which create a string of scripts concatenated by '&' and uses eval to execute them all together. Something like this:

scriptBuilder="ksh -x script1.sh & ksh -x script2.sh & ksh -x script3.sh";
eval $scriptBuilder;

Just want to make sure what is the max limit for parallel execution on the server.

Sas
  • 1.1k
  • 3
  • 17
  • 23