by kaptain on 7/14/22, 4:07 AM with 3 comments
by 369548684892826 on 7/14/22, 6:54 AM
rsync -cavin --info=name2 --no-perms --no-owner --no-group /local/data/path/ user@host:/remote/data/path/ | grep -e '<' -e '>'
grep finds difference markers in the output.-c for checksum generation.
-n for dry-run mode so rsync doesn't transmit files.
by ttgurney on 7/14/22, 4:20 AM
The backup is to physical media so that makes this scheme easy. Don't know if or how this could be applied to online backups.
by stop50 on 7/14/22, 4:31 AM