可能重複:
How to wait in bash for several subprocesses to finish and return exit code !=0 when any subprocess ends with code !=0?多個命令優先
我有以下問題:
我有3個過程,我把一個腳本
process1 process2 proc ess3
我希望進程1和2同時運行,但它們都在進程3啓動之前完成。
我想這是一樣的東西,我不知道該following..but「等待」
#!/bin/sh
(
process1 &
process2 &
wait
process3
)
謝謝
法比奧
這將做你想做的。你不需要()構造。 –