Created
January 15, 2016 19:23
-
-
Save bfritz/4d1234f415cc6287be65 to your computer and use it in GitHub Desktop.
convert android backup.ab file to tarball
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
# assumes unencrypted backup | |
# dump tarball to stdout | |
tail -n +5 backup.ab | openssl zlib -d | |
# show tarball TOC | |
tail -n +5 backup.ab | openssl zlib -d | tar tv | less |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment