A critically needed feature I use a lot is GNU xargs parallel operations. Often the parallel xargs operations are better than the cli util "parallel" for my use-cases. Example: find samplegz | xargs -n1 -P4 sh parse.sh P4 says have at most 4 commands running at the same time For examples: https://www.xaprb.com/blog/2009/05/01/an-easy-way-to-run-many-tasks-in-parallel/
Fixed in git.