I have this in my Makefile:
run: for x in *.bin ; do ./$$x ; done
such that it launches all executables one by one. I want to do this:
Try:
run: for x in *.bin ; do (./$$x &) ; done
The ()'s run the command in a subshell.