Skip to content

Instantly share code, notes, and snippets.

@mdellavo
Created May 19, 2013 15:24
Show Gist options
  • Save mdellavo/5607981 to your computer and use it in GitHub Desktop.
Save mdellavo/5607981 to your computer and use it in GitHub Desktop.
shell to pull database from unrooted android phone
#!/bin/sh
adb -d shell 'run-as org.quuux.eyecandy cat /data/data/org.quuux.eyecandy/databases/eyecandy.db > /sdcard/eyecandy.db'
adb pull /sdcard/eyecandy.db
adb -d shell 'rm /sdcard/eyecandy.db'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment