how to a Write a script that runs a 5 instances of a child process in the background (at a gap of 5 seconds) and do a continuous check to see if any of the child process is completed it starts another instance of the same process till the child process has executed 20 instances.
feedback
|
migrated from superuser.com Dec 9 '09 at 13:16
This question came from our site for computer enthusiasts and power users.
|
Well I'm not entirely sure what you're asking but I'll do my best to guide you on the right path... you can fork processes in your script like so:
wait 5 seconds:
you can see how many instances of your program are currently running via ps:
To keep track of how many instances have run, use a loop and an incrementing value:
the description is somewhat vague, I'm not sure if you want the 5 second gap to carry on for the subsequent 15 instances or not, and if you only want a max of 5 running at a time? That's how I interpreted it. There's many ways to implement this logic. | |||
feedback
|
|
This should run in most POSIX-ish shells (I tested with dash (956b4bd… from Git), ksh (“1993-12-28 p” from Mac OS X 10.4), bash (2.05b and 4.0.35), zsh (4.3.10-dev-1; actually 8a04e94… from Git)):
Tested with: If you wanted to tie yourself to a particular shell, you might be able to use job control and a trap on SIGCHLD instead of double forking and probing with | |||
|
feedback
|