I want to do the following from the tcsh command line, preferably in 1 line:
build_cmd1 &
build_cmd2 &
build_cmd3 &
wait until all parallel build commands finish
regression_cmd
That is, I want to fork off a bunch of build commands, block until they exit, and then run another command. I want to do this from the tcsh command line.