Is there a way to ‘inline’ a block of code the run in the background without defining the block as a function? I was thinking something like:
( do something; a bit more; finally this ) &
( more things; etc ...; ) &
wait
proceed ...
I suppose it’s only one line extra define a single-use function and then immediately use it but I was curious and didn’t find anything searching.
Output