Hacker News new | ask | show | jobs
by chkhd 1282 days ago
That is already doable with xargs itself

xargs -P maxprocs

Parallel mode: run at most maxprocs invocations of utility at once. If maxprocs is set to 0, xargs will run as many processes as possible.

1 comments

GNU parallel gives you some extra features like a runtime log and resumable operation.