copy all contents of a directory linux code example
Example 1: copy all files from a folder to another ubuntu
cp -a ./source/. ./dest/
Example 2: copy folder linux
cp -R dir1 dir2
Example 3: copy contents of directory to another directory linux
cp -a /source/. /dest/
Example 4: linux copy all directory contents to another directory
rsync -a source/ destination