I am currently using rsync to mirrors sets of files between multiple drives. What I do is:
rsync -rav --delete --progress --dry-run /Volume/example1/somedir/ /Volume/example2/somedir/
I then check the output, making sure it's not about to transfer any large files I simple renamed or moved
I then remove the --dry-run flag, append --extended-attributes and allow the command to run (the extended attributes flag adds a lot of lines to the output, and makes it hard to see what actual files are being transferred)
What am I looking for is a OS X GUI application to simplify this to 2 clicks. Basically:
- It has presets for transfers (source/destination, should delete files missing from source directory etc)
- When you click "Go", it presents you with a list of files that are to be copied and deleted (excluding hiding the metadata files to be copied)
- You click "Really go" and it proceeds with the transfer
I've tried two rsync GUI's, Yarg and arRsync - neither make support the --dry-run functionality.
In short, is there a GUI file-sync tool that allows you to check what files are about to be copied? Does such a utility exist?