Skip to content

Instantly share code, notes, and snippets.

@haakonstorm
Created March 20, 2020 17:40
Show Gist options
  • Save haakonstorm/93b4724ca41d64f4619576dbc20ad116 to your computer and use it in GitHub Desktop.
Save haakonstorm/93b4724ca41d64f4619576dbc20ad116 to your computer and use it in GitHub Desktop.
Oneliner to get your Apple Model Identifier from the shell
ioreg -l | awk '/product-name/ { split($0, line, "\""); printf("%s\n", line[4]); }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment