Last active
November 19, 2021 20:08
-
-
Save rbanffy/9c806ba406dba9a5afa324d0be3b8f13 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 $2 "+" $3 "+" $4}')+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