Newer
Older
Import / code / Scripts / backup_iphone.sh
#!/bin/bash


# Copy filesystem to /tmp/iPhoneBackup
# ssh root@iphone tar -c / | (cd /tmp/iPhoneBackup/; tar -x)

# Compress to ~/Desktop/
ssh root@iphone tar -c / | gzip -c > ~/Desktop/iphone-backup.tar.gz