|
|
|
|
|
by stephenr
2231 days ago
|
|
We've briefly used parallel for an internal tool when the site went "multisite" (i.e. multiple parallel instances that sometimes need to all do the same thing, such as post-deployment tasks). We currently have a patch to remove it, and instead use regular task backgrounding and the `wait` shell builtin. The way output is buffered was not particularly conducive to what we wanted to achieve. |
|
GNU Parallel can handle output in a few ways:
If you are using '&' + 'wait', it pretty much has the same effect as `--ungroup`.