Created
October 6, 2016 06:56
-
-
Save sneak/977603e1b501ec93f3dd1c2ff000c305 to your computer and use it in GitHub Desktop.
This file contains 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 | |
tar -c ~/Library/Application?Support/MobileSync/Backup/ | \ | |
pv | pbzip2 | \ | |
gpg --encrypt -r df2a55c2 > /Volumes/rusty01/iosbackup.tbz2.gpg | |
This file contains 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 | |
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