In yesterday's post, I described a couple rsync oddities, and how they'd led me to this modified command for pruning old (older than four days) backups:
find /path/to/backups/ -d 1 -type d -Bmin +$((60*4*24)) -maxdepth 1 -exec rm -r {} +
After getting this working, though, I wondered if it'd be possible to keep my backups from the first day of each month, even while clearing out the other dates. After some digging in the rsync man page, and testing in Terminal, it appears it's possible, with some help from regex.
My backup folders are named with a trailing date and time stamp, like this:
back-2017-05-01_2230 back-2017-05-02_0534 back-2017-05-02_1002
To keep any backups made on the first of any month, for my folder naming schema, the modified find command would look like this:
find /path/to/backups/ -d 1 -type d -Bmin +$((60*4*24)) -maxdepth 1 -not -regex ".*-01_.*" -exec rm -r {} +
The new bits, -not -regex ".*-01_.*" basically say "find only files that do not contain anything surrounding a string that is 'hyphen 01 underscore.' And because only backups made on the first of the month will contain that pattern, they're the only ones that will be left out of the purge.
This may be of interest to maybe two people out there; I'm documenting it so I remember how it works!
Have you seen this? https://github.com/laurent22/rsync-time-backup, I dont know if your code has same features but it not if would be great to mix both
Comments are closed.