Forked from rbanffy/gist:9c806ba406dba9a5afa324d0be3b8f13
Last active
March 6, 2023 10:23
-
-
Save rowild/5a23d15d268448139c695c0fc5d0dc62 to your computer and use it in GitHub Desktop.
Find out more about your CPU
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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