Bash:并行执行一些进程但等待最慢的进程
您好,我正在编写一个 bash 脚本,其中我必须使用 ipset-restore 命令恢复大约 8 个以上的大 ip 集。 实际上我的 shell 脚本基本上有一个类似的列表 ipset-restore < 列表 1.txt ipset-restore < 列表 2.txt ipset-restore < 列表 3.txt ... 以这种方式执行操作非常慢,并且因为机器有资源并且 ipset 是多线程的,可以并行执行各种操作,所以我想一次执行许多 ipset-restore。 我想到使用禁止但是这样做会让我无法在执行新指令之前查看进程是否已...