I want to use rsync (I'm actually using Grsync) to backup my home folder.
The final command I decided to use is:
rsync -r -t -p -v --progress --delete -l -s --exclude-from [MY_FILE_WITH_EXCLUSIONS] --human-readable /home/myusername/ /mnt/Device/backupHome/
the problem is that, even after running the synch, a see a huge list of files and folders while running the dry-run (-n) with Grsync and a recap like this:
sent 656.77K bytes received 32.61K bytes 141.82K bytes/sec
total size is 2.2G speedup is 5,665.39 (DRY RUN)
Now that's something not very useful for me. I'd like it to show something more meaningful.
For example I'd like not to see the list of up-to-date files/folders, I guess it's better to see just the list of files/folders that are going to be sent to the receiver and also the size of them. Then the total final size of all files/folders that are being sent and the one of those that are being removed on the receiver would be something else very useful to me.
What options do I have?
Is there perhaps any options of Grsync that might be handful for that case?
Or at least any smart idea to improve rsync dry-run results?
Thanks