Created
December 3, 2015 14:36
-
-
Save mat/ccdaa447e288affd265a to your computer and use it in GitHub Desktop.
Poor Man's TimeMachine Backup
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
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