Answers for "copy folder in ubuntu"

37

copy folders linux

cp -R source_dir destination_dir
#example
cp -R /etc /etc_backup
Posted by: Guest on June-01-2020
7

copy folder ubuntu

$ cp -r /source_directory /destination_directory
Posted by: Guest on November-12-2020
1

create and copy folder in ubuntu

$ cp -rv /source_directory /destination_directory

# r = copy directories recursively
# v = explain what is being done
Posted by: Guest on April-18-2021
5

copy folder linux command line

cp -R source_dir destination_dir
Posted by: Guest on July-31-2020
1

copy folder in ubuntu

cp -r /path/to/directory /path/to/location/new-name
Posted by: Guest on October-03-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language