Skip to content

Instantly share code, notes, and snippets.

@kichiemon
Created January 18, 2020 01:04
Show Gist options
  • Save kichiemon/a16a310f8a8e2c30f5523fdb90ad7ad9 to your computer and use it in GitHub Desktop.
Save kichiemon/a16a310f8a8e2c30f5523fdb90ad7ad9 to your computer and use it in GitHub Desktop.
Check Xcode UUID. e.g. `./echo_xcode_uuid.sh Xcode.app`
#!/bin/sh
if [ $# = 1 ]; then
echo $(/usr/libexec/PlistBuddy -c 'Print DVTPlugInCompatibilityUUID' "/Applications/$1/Contents/Info.plist")
else
echo $(/usr/libexec/PlistBuddy -c 'Print DVTPlugInCompatibilityUUID' "/Applications/Xcode.app/Contents/Info.plist")
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment