Run a pool of processes in shell
- by viraptor
I'm looking for an easy method to run N selected processes at the same time with one command. It should put all the output on my terminal and shut down all of them when I exit with ctrl+c. Is there any existing app that does this?
I'm thinking of some thing like exec_many 10 foo - it should keep 10 foos running and respawn any that dies.