Skip to content

Instantly share code, notes, and snippets.

View Gracker's full-sized avatar
:octocat:
Focusing

Jianwu Gao Gracker

:octocat:
Focusing
View GitHub Profile
@ignasi
ignasi / db_getter.sh
Created January 30, 2014 11:43
Get database from an Android app (Android 4.3+)
#!/bin/bash
# Android 4.3+ changes app's internal directory permissions and you can not just pull your
# databases to your computer, so I did this as a workaround to extract my databases.
# I only use it for debug, use it under your responsability.
package=$1
db_name=$2
path="/data/data/$package/"