bash循环并行

时间:2016-12-20 16:36:13

标签: bash gnu-parallel

我正在尝试并行运行此脚本,因为每组中的i< = 4。 runspr.py本身是平行的,那很好。我想要做的是在任何实例中只运行4 i循环。

在我目前的代码中,它将运行所有内容。

#!bin/bash
for i in *
do 
  if [[ -d $i ]]; then
    echo "$i id dir"
    cd $i
      python3 ~/bin/runspr.py SCF &
  cd ..
  else
    echo "$i nont dir"
  fi
done

我已关注https://www.biostars.org/p/63816/https://unix.stackexchange.com/questions/35416/four-tasks-in-parallel-how-do-i-do-that 但无法并行地实现代码。

2 个答案:

答案 0 :(得分:5)

您不需要使用for循环。您可以find使用gnu parallel

find . -mindepth 1 -maxdepth 1 -type d ! -print0 |
parallel -0 --jobs 4 'cd {}; python3 ~/bin/runspr.py SCF'

答案 1 :(得分:0)

另一种可能的解决方案是:

extraProperty