===================================== 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