Skip to content

Instantly share code, notes, and snippets.

@snehesht
Last active September 6, 2016 00:05
Show Gist options
  • Save snehesht/1d56d7ad78eea6cd72141fd2bef94f64 to your computer and use it in GitHub Desktop.
Save snehesht/1d56d7ad78eea6cd72141fd2bef94f64 to your computer and use it in GitHub Desktop.
System backup and restore with rsync
#!/usr/bin/env bash
rsync -aAXv --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","lost+found"} --delete /* /backup/$(date -I)
#!/usr/bin/env bash
rsync -aAXv --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","lost+found"} --delete /backup/#DATE/* /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment