Simply the best thing around for keeping file trees up to date.
The following are random notes:
Cut&Paste shortcut for one of my LAN backups:
rsync -Cravztue ssh --progress --no-whole-file --stats --sparse --dry-run /home/rcarmo rcarmo@mini:/Volumes/Pedestal/Backups/monolith/home/carmor
Poor man’s rsync using only cp:
Assuming file contents don’t change, this will only copy new files across:
cp -npRv "/Volumes/Local" "/Volumes/Remote"
