ubuntu copy directory and contents to another directory 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
cp -a ./source/. ./dest/
cp -R dir1 dir2