Skip to content

Instantly share code, notes, and snippets.

@omgmog
Created February 27, 2015 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omgmog/ff4e34fda24b82a03d42 to your computer and use it in GitHub Desktop.
Save omgmog/ff4e34fda24b82a03d42 to your computer and use it in GitHub Desktop.
Output the mean speed in Mhz of all cpu cores
#!/bin/sh
cat /proc/cpuinfo | grep MHz | awk '{ total += $4; count++} END { print total/count }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment