copy a file in linux to another directory code example
Example 1: copy all files from a folder to another ubuntu
cp -a ./source/. ./dest/
Example 2: shell copy
cp text.txt Documentos/
#copy arquivo text.txt to directory Document/
cp -a ./source/. ./dest/
cp text.txt Documentos/
#copy arquivo text.txt to directory Document/