copy contents of directory to another directory linux code example

Example 1: copy folder ubuntu

$ cp -r /source_directory /destination_directory

Example 2: copy all files from a folder to another ubuntu

cp -a ./source/. ./dest/

Example 3: copy contents of directory to another directory linux

cp -a /source/. /dest/

Example 4: 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 5: linux copy all directory contents to another directory

rsync -a source/ destination

Example 6: copy directory with files

cp -r source_folder destination/path