#!/usr/bin/env bash cat /proc/cpuinfo | awk 'BEGIN {IGNORECASE=1;} /bogomips/ {total += $3} END { printf "%0.0f\n", total }'