最佳答案
我现在有当前的脚本。
#!/bin/bash
# script.sh
for i in {0..99}; do
script-to-run.sh input/ output/ $i
done
我希望使用 xargs 并行运行它,我已经试过了
script.sh | xargs -P8
但是上面的操作一次只执行一次。 在脚本 for 循环中要执行的行的末尾添加 & 将尝试同时运行该脚本99次。如何执行循环,一次只执行8个,总共执行100个。