可以在bash子shell中调用函数作为后台作业吗?

时间:2011-05-08 06:57:18

标签: bash function background subshell

假设我有一个bash函数

Yadda() {
  # time-consuming processes that must take place sequentially
  # the result will be appended >> $OUTFILE
  # $OUTFILE is set by the main body of the script
  # No manipulation of variables in the main body
  # Only local-ly defined variables are manipulated
}

我是否可以在子shell中调用该函数作为后台作业? E.g:

OUTFILE=~/result
for PARM in $PARAMLIST; do
  ( Yadda $PARM ) &
done
wait
cat $OUTFILE

您怎么看?

1 个答案:

答案 0 :(得分:9)

您可以在子shell中将该函数作为后台作业调用。它就像你在你的例子中输入一样工作。

我在你的例子中看到了一个问题。如果某些进程同时完成,它们将尝试同时写入OUTFILE,输出可能会混淆。

我建议让每个进程写入自己的文件,然后在所有进程完成后收集文件。