copy a file to another directory linux code example

Example 1: copy folders linux

cp -R source_dir destination_dir
#example
cp -R /etc /etc_backup

Example 2: how to copy the files of a folder to another folder linux

cp -a /source/. /dest/

#The -a option is an improved recursive option, that preserve all file attributes, and also preserve symlinks.

#The . at end of the source path is a specific cp syntax that allow to copy all files and folders, included hidden ones.

Example 3: linux copy

# Linux - Bash

# syntax:
# cp [option(s)] <source-filepath> <destination-filepath>

# example-1 (fundamental - no options):
cp "C:\Windows\System32\drivers\etc\hosts.txt" "C:\Users\hosts.txt"

# example-2 (fundamental - with options):
cp -nR "C:\Windows\System32\drivers\etc" "C:\Users"

# + ------ + ------------------------------------------------------- +
# | OPTION |  DESCRIPTION                                            |
# + ------ + ------------------------------------------------------- +
# |   -a   | archive files                                           |
# |   -f   | force copy by removing the destination file if needed   |
# |   -i   | interactive - ask before overwrite                      |
# |   -l   | link files instead of copy                              |
# |   -L   | follow symbolic links                                   |
# |   -n   | no file overwrite                                       |
# |   -R   | recursive copy (including hidden files)                 |
# + ------ + ------------------------------------------------------- +

Example 4: shell copy

cp text.txt Documentos/
#copy arquivo text.txt to directory Document/

Example 5: copy command in linux

move command : mv filename dirname
remove command : rm -r filename
copy command : cp filename dirname
zip command : zip -r filename.zip foldername
unzip command : unzip filename.zip -d dirname

Example 6: copy file in linux command line

cp [OPTION] Source Destination
cp [OPTION] Source Directory
cp [OPTION] Source-1 Source-2 Source-3 Source-n Directory