Created
February 26, 2016 16:56
-
-
Save martin-grindr/63390ca52f42ff82be9a to your computer and use it in GitHub Desktop.
Extract grindr backup and open database
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/bash | |
| adb backup -f ./grindrapp.ab -noapk com.grindrapp.android | |
| java -jar ~/src/abe/build/libs/abe-all.jar unpack ./grindrapp.ab ./grindrapp.tar | |
| tar -xf grindrapp.tar | |
| open apps/com.grindrapp.android/db/grindr3.db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Could you please elaborate on how this script is used and what each line does?