Skip to content

Instantly share code, notes, and snippets.

@wuairc
Created January 25, 2019 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wuairc/338c59c6361c7bb3343bc41d600de672 to your computer and use it in GitHub Desktop.
Save wuairc/338c59c6361c7bb3343bc41d600de672 to your computer and use it in GitHub Desktop.
adb pull files (jars, apks) from device directory
for i in `adb shell find /system/vendor/app -name '*.apk'`;
do
adb pull $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment