Created
December 26, 2017 18:25
-
-
Save unqueued/ced6ad68061078dc0de142d24c3c38c6 to your computer and use it in GitHub Desktop.
copy apk files from data/app on non-rooted phone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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