Saturate (max out) CPU Utilization
To max out a 4 CPU machine run:
#!/bin/bash function clean_up { kill $pids exit } trap clean_up SIGHUP SIGINT SIGTERM pids="" for i in {1..4}; do while : ; do : done & pids="$pids $!" done echo "waiting on PIDs:$pids" wait $pids