Kopírovať do iného priečinka linux

Príklady kódu

32
0

N

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

N

# 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)                 |
# + ------ + ------------------------------------------------------- +

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................