Running multiple programs in parallel from a bash script

This comes in handy when I want to, for example:

From this answer:

set -m  # enable job control

prog1 & prog2 && fg

This will: