Skip to content

Instantly share code, notes, and snippets.

@sneak
Created October 6, 2016 06:56
Show Gist options
  • Save sneak/977603e1b501ec93f3dd1c2ff000c305 to your computer and use it in GitHub Desktop.
Save sneak/977603e1b501ec93f3dd1c2ff000c305 to your computer and use it in GitHub Desktop.
#!/bin/bash
tar -c ~/Library/Application?Support/MobileSync/Backup/ | \
pv | pbzip2 | \
gpg --encrypt -r df2a55c2 > /Volumes/rusty01/iosbackup.tbz2.gpg
#!/bin/bash
cat /Volumes/rusty01/iosbackup.tbz2.gpg | \
gpg -d | pv | pbzip2 -d | tar xvf -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment