Bash 腳本,等待全部子進程結束

count=0
for pid in $(jobs -p); do
  wait $pid
  [ "x$?" == "x0" ] && ((count++))
done
echo $count" processes done"
相關文章
相關標籤/搜索