Skip to main content
1 of 3
Sas
  • 1.1k
  • 3
  • 17
  • 23

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 wanna make sure what is the max limit for parallel execution on the server. Any help would be appreciated.

Sas
  • 1.1k
  • 3
  • 17
  • 23