Merge two similar folders
rsync -avun source/ destination/ (note the ending slashes, those are important)
-aarchive mode-a = -rlptgoD(recursive + preserve everything)-rrecursive,-lsymlinks,-ppreserve permissions,-tpreserve modification times,-gpreserve ownership,-opreserve ownder,-DPreserve device files and special files
-vverbose,-vvvery verbose,-vvvvery very verbose-ndry run-uupdate (skip files that are newer at destination)