parallelize test runs
mccalluc opened this issue · 0 comments
mccalluc commented
$ time ./test.sh
...
real 1m28.831s
user 1m9.932s
sys 0m13.098s
This is just a loop: The parallel
command (not a built-in) looks interesting.
$ time $( ls tests/* | parallel bash )
...
real 0m31.261s
user 1m14.905s
sys 0m12.244s