This will verbosely sync the 2 directories locally
1 | rsync --delete --progress --sparse -va /dir/of/source/ /dir/of/destination/ |
And to do the same thing over SSH:
1 | rsync --sparse --progress -avc -e ssh user@example.com:/dir/of/source /dir/of/destination/ |
Leave a Reply
You must be logged in to post a comment.