Skip to content

Instantly share code, notes, and snippets.

@futureimperfect
Last active August 29, 2015 14:06
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 futureimperfect/45f8cf5bc0c0abc718b4 to your computer and use it in GitHub Desktop.
Save futureimperfect/45f8cf5bc0c0abc718b4 to your computer and use it in GitHub Desktop.
Get OS X Minor Version (Yosemite Compatible)
osversionlong=$(sw_vers -productVersion)
osversionshort=$(echo $osversionlong | python -c 'import sys; out = sys.stdin.read().split(".")[1]; print out')
echo "$osversionshort"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment