Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can a function be invoked in a bash subshell as background job?

Let's say I have a bash function

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
}

Am I allowed to invoke the function as a background job in a subshell? E.g.:

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

What do you think?

like image 356
pepoluan Avatar asked May 08 '11 06:05

pepoluan


1 Answers

You can invoke the function as a background job in a subshell. It will work just like you typed in your example.

I see one problem in the way you demonstrated it in your example. If some of the processes finish simultaneously, they will try to write to the OUTFILE at the same time and the output might get mixed up.

I suggest to let each process write to it's own file then collect the files after all processes are done.

like image 53
Lesmana Avatar answered Sep 18 '22 18:09

Lesmana