Rsync Basic
rsync a directory to a new directory with different name
A trailing slash on the source avoids creating an additional directory level at the destination.
rsync -a src/ dest
You can think of a trailing / on a source as meaning "copy the contents of this directory" as opposed to "copy the directory by name".
Show progress
rsync -a -P src dest
rsync -a --progress src dest