Lets say I have a block of code like this:
while condition; do
{
command 1
command 2
command 3
}
done
Does pushing the block of code between the curly braces to background like this { code } &
results in parallelization. Is there any improvement in performance by doing this for CPU intensive code blocks.