How do you run multiple programs in parallel from a bash script?

前端 未结 15 1414
眼角桃花
眼角桃花 2020-11-22 06:31

I am trying to write a .sh file that runs many programs simultaneously

I tried this

prog1 
prog2

15条回答
  •  不要未来只要你来
    2020-11-22 07:18

    You can try ppss. ppss is rather powerful - you can even create a mini-cluster. xargs -P can also be useful if you've got a batch of embarrassingly parallel processing to do.

提交回复
热议问题