copy all folder and files in linux code example
Example 1: copy all files from a folder to another ubuntu
cp -a ./source/. ./dest/
Example 2: linux copy folder with files
cp -R path_to_source path_to_destination/
cp -a ./source/. ./dest/
cp -R path_to_source path_to_destination/