In Linux/bash how can I prevent asynchronous commands?
I have a makefile that calls external build scripts. Some of these scripts (which I can’t change) make use of commands that are forked / backgrounded (or asynchronous as the bash manual names them) That means that the next line in the makefile can start before some of the previous command finishes – creating a … Read more