I am a little confused by this although
diff –rq dir/ dir1/
does not show a difference This rsync is to backup the directory
rsync -avrREz --delete --links -e "ssh -l user" --delete dir/ site.net:dir/ && tar -c /dir/ | md5sum
but it does not seems to give me the same checksums when I do a tar on the destination directory
tar –c dir/ | md5sum
Am I missing something?