As a reminder:
Parallelism is doing a lot of things at once. Concurrency can be used to run things in parallel, but concurrency is about structuring things.
Rob Pike
Using &
and wait
This is for concurrent execution.
Using &
after a command will put it in the background, and wait
will wait for all background processes to finish.