===================================== UNIX Tricks ===================================== **See also `freebsd `__ and `debian `__ tricks.** Fork many processes with `xargs` ----------------------------------- To fork off 10 instances of sleep with incremented lengths, 5 at a time:: $ seq 10 20 | xargs -n 1 -P 5 sleep