Skip to content

Instantly share code, notes, and snippets.

@ShravanJ
Last active February 6, 2019 17:36
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 ShravanJ/34f6cd32116ba6460d329446d5e8642e to your computer and use it in GitHub Desktop.
Save ShravanJ/34f6cd32116ba6460d329446d5e8642e to your computer and use it in GitHub Desktop.
Get information about an App Store app record from the command line (requires curl and jq)
#!/bin/bash
# Requires curl and jq (https://stedolan.github.io/jq/)
# To run, make executable with chmod +x then execute with ./QuerryAppStoreRecord.sh com.company.app
# For example, ./QueryAppStoreRecord org.videolan.vlc-ios
curl -s https://itunes.apple.com/lookup?bundleId=$1 | jq '.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment