使用 xargs。
ls dir | xargs -P4 -L1 cargo run --release
实时查看正在运行哪些命令:
watch -n 1 'pgrep -x cargo | xargs -L1 cmdof'
cmdof 见我的 scripts 仓库。
cmdof