Skip to content

Instantly share code, notes, and snippets.

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 rowild/5a23d15d268448139c695c0fc5d0dc62 to your computer and use it in GitHub Desktop.
Save rowild/5a23d15d268448139c695c0fc5d0dc62 to your computer and use it in GitHub Desktop.
Find out more about your CPU
open http://www.google.com/?q=$(sysctl -n machdep.cpu.brand_string | awk '{FS=" " ; print $1 "+" $3 "+" $3}')+site:ark.intel.com
# or, on a Linux machine
xdg-open http://www.google.com/?q=$(fgrep 'model name' /proc/cpuinfo | head -n 1 | awk '{FS=" " ; print $5 "+" $6}')+site:ark.intel.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment