Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ###BACKUP
- # on desktop
- apk="ch.rmy.android.http_shortcuts"
- adb pull "$(adb shell pm path $apk | awk -F':' '{print $2}')"
- mv base.apk $apk.apk &> /dev/null
- # on phone as root
- adb shell su -c tar czf /sdcard/ch.rmy.android.http_shortcuts.tar.gz /data/data/ch.rmy.android.http_shortcuts
- adb pull /sdcard/ch.rmy.android.http_shortcuts.tar.gz
- ###Restore
- adb push $apk.tar.gz /sdcard/
- adb install -g $apk.apk
- #on phone
- cd /sdcard/
- mkdir ch.rmy.android.http_shortcuts
- cd ch.rmy.android.http_shortcuts
- tar xvf ../ch.rmy.android.http_shortcuts.tar.gz
- #as root
- find data|while read file;do echo $file; cat $file > /$file;done
Advertisement
Add Comment
Please, Sign In to add comment