Skip to content

Instantly share code, notes, and snippets.

@Diviei
Last active August 9, 2019 02:41
Show Gist options
  • Save Diviei/f80825193c1c53243abbc4ec24a45af1 to your computer and use it in GitHub Desktop.
Save Diviei/f80825193c1c53243abbc4ec24a45af1 to your computer and use it in GitHub Desktop.
curl -s -g -O -J -L -H "Authorization: Token $1" https://api.koodous.com/feed/apks
unzip -o apk*.zip
rm apk*.zip
mkdir downloads
while read p; do
IFS=';' read -r -a array <<< "$p"
echo "Downloading ${array[0]}"
curl -s ${array[1]} > downloads/${array[0]}.apk
done < samples
rm samples
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment