Skip to content

Instantly share code, notes, and snippets.

@coffeemakr
Created August 2, 2017 07:17
Show Gist options
  • Save coffeemakr/8862e7903c4bea21b99c6a457268af71 to your computer and use it in GitHub Desktop.
Save coffeemakr/8862e7903c4bea21b99c6a457268af71 to your computer and use it in GitHub Desktop.
#!/usr/bin/bash
# Call ./google_play_check.sh packagelist
filename="$1"
while read -r line
do
name="$line"
curl -X HEAD -s -q -I -f "https://play.google.com/store/apps/details?id=$line" >/dev/null && echo "$name"
done < "$filename"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment