I have incremental rsync backups of a folder, created with:
rsync --delete -a -v --backup --backup-dir="../backup_`date +%Y-%m-%d`" /orig /backups/dest
so I have a copy of current /orig
on /backups/dest
and modified files on /backups/backup_YYYY_MM_DD/
my question is there's any easy way to restore the backup as it was on specific date?