Skip to content

Instantly share code, notes, and snippets.

@ShaneIsley
Created October 15, 2013 22:32
Show Gist options
  • Save ShaneIsley/6999697 to your computer and use it in GitHub Desktop.
Save ShaneIsley/6999697 to your computer and use it in GitHub Desktop.
Search local iTunes IOS apps for URL Scheme info. Append [].CFBundleURLSchemes to .CFBundleURLTypes for just the Schemes. Requires jq & plutil for munging the plist file: brew install jq plutil either comes with OSX, Xcode, or just the Command Line Developer Tools https://developer.apple.com/downloads/index.action
foreach i (~/Music/iTunes/iTunes*/Mobile*/*.ipa) echo $i; unzip -Cnqj $i "Payload/*/Info.plist" && plutil -convert json Info.plist -o Info.json; jq '.CFBundleURLTypes' Info.json 2>/dev/null; rm -rf Info.{plist,json}; end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment