Open rstacruz opened 8 years ago
The docs make a comparison with:
cmd1 & cmd2 & cmd3
But really you should compare it with:
cmd1 & cmd2 & cmd3 & wait
This will wait until all commands have terminated. But yes, ^C will not abort all commands unlike parallel-shell.
Thanks @rstacruz :smile:
You could make a PR documenting this, if you'd like?
The docs make a comparison with:
But really you should compare it with:
This will wait until all commands have terminated. But yes, ^C will not abort all commands unlike parallel-shell.