bash 中的块以便一次运行的子进程不超过 5 个?

bash 中的块以便一次运行的子进程不超过 5 个?

有没有办法在 bash 中阻止,如下所示:

function do_work {

   wait -c 5 ### wait until 5 or fewer cp's are running
   now do whatever else you wanted

}

相关内容