Skip to content

Instantly share code, notes, and snippets.

@mat
Created December 3, 2015 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mat/ccdaa447e288affd265a to your computer and use it in GitHub Desktop.
Save mat/ccdaa447e288affd265a to your computer and use it in GitHub Desktop.
Poor Man's TimeMachine Backup
TimeMachine using cron and rsync ;-)
Backs up in two intervals: 10 and 60 minutes
$ crontab -l
*/10 * * * * rsync -a -q --delete ~/projects/ ~/Desktop/projects10/
0 * * * * rsync -a -q --delete ~/projects/ ~/Desktop/projects60/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment