how to copy a folder and its contents in linux code example
Example 1: copy contents of directory to another directory linux
cp -a /source/. /dest/
Example 2: linux copy all directory contents to another directory
rsync -a source/ destination
cp -a /source/. /dest/
rsync -a source/ destination