windows shell copy code example
Example 1: shell copy
cp text.txt Documentos/
#copy arquivo text.txt to directory Document/
Example 2: copy command in cmd
COPY "filename" /Y
to overwrite the file in destination
cp text.txt Documentos/
#copy arquivo text.txt to directory Document/
COPY "filename" /Y
to overwrite the file in destination