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

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

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.

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.

edited tags
Link
Gilles 'SO- stop being evil'
  • 865.4k
  • 205
  • 1.8k
  • 2.3k
Source Link
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.