Skip to content

Instantly share code, notes, and snippets.

View Poussinou's full-sized avatar
💭
I may be slow to respond.

Poussinou

💭
I may be slow to respond.
View GitHub Profile
#!/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"