gpt4 book ai didi

bash - bash中目录中每个文件的程序并行执行

转载 作者:行者123 更新时间:2023-12-02 01:03:10 24 4
gpt4 key购买 nike

如何在不使用并行命令的情况下使用 bash 将目录中所有文件的工作分配给多个 cpus

最佳答案

NR_CPUS=3
format=.jpg
job_count=0
for f in *."$format"; do
mycommand "$f" &
job_count=$((job_count+1))
if [ "$job_count" -eq $NR_CPUS ]; then
wait
job_count=0
fi
done

关于bash - bash中目录中每个文件的程序并行执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25933719/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com