copy directory content to another directory 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