Skip to content

Instantly share code, notes, and snippets.

@unqueued
Created December 26, 2017 18:25
Show Gist options
  • Save unqueued/ced6ad68061078dc0de142d24c3c38c6 to your computer and use it in GitHub Desktop.
Save unqueued/ced6ad68061078dc0de142d24c3c38c6 to your computer and use it in GitHub Desktop.
copy apk files from data/app on non-rooted phone
#!/bin/sh
adb shell pm list packages -f | grep data/app | awk -F: '{print $2}' | awk -F= '{print $1}' | while read line; do adb pull -a $line; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment