darkguy2008 / parallelshell

Run multiple shell commands in parallel
501 stars 44 forks source link

Docs: mention `a & b & wait` #41

Open rstacruz opened 8 years ago

rstacruz commented 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.

keithamus commented 8 years ago

Thanks @rstacruz :smile:

You could make a PR documenting this, if you'd like?