Skip to content

Instantly share code, notes, and snippets.

@yachi
Last active August 29, 2015 14:08
Show Gist options
  • Save yachi/26d5b2319947a2740d48 to your computer and use it in GitHub Desktop.
Save yachi/26d5b2319947a2740d48 to your computer and use it in GitHub Desktop.
download gapps
curl --compress -s http://www.apkmirror.com/apk/google-inc/ | grep -o '"http://www.apkmirror.com/apk/google-inc/\w\+/"' | sed 's#"##g' | sort |uniq | parallel -j8 'curl --compress -s {} | grep -o "http://www.apkmirror.com/apk/google-inc/.*-apk/" | head -n1' |sort | uniq | parallel -j8 'curl --compress -s {} | grep -o "http://www.apkmirror.com/wp-content/themes/APKMirror/download.php?id=\w\+" | head -n1' | sort | uniq | parallel -j8 'wget -c --content-disposition {}'
 for a in *.apk; do adb install -r $a;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment