11

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?

1
  • @eggyal unfortunately, I'm at home, and the Linux server is at office :P Commented May 8, 2011 at 7:05

1 Answer 1

12

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.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.