Hi all I have a `proc` which calls `execCmdEx` in a loop. The command being executed is isolated enough to be able to call it in parallel, so I'd like to see whether doing this would speed up the overall process.
What would be the most idiomatic way of calling `execCmdEx` in parallel? `parallel` keyword? `async/await`? `spawn`? Thanks!
