diff --git a/bin/bogo-total b/bin/bogo-total new file mode 100755 index 0000000..ad79e7b --- /dev/null +++ b/bin/bogo-total @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +cat /proc/cpuinfo | awk 'BEGIN {IGNORECASE=1;} /bogomips/ {total += $3} END { printf "%0.0f\n", total }' +