copy content of one folder to another in linux code example
Example 1: copy all files from a folder to another ubuntu
cp -a ./source/. ./dest/
Example 2: copy contents of directory to another directory linux
cp -a /source/. /dest/
cp -a ./source/. ./dest/
cp -a /source/. /dest/