Answers for "copying directories in linux"

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
6

copy directory command in linux

$ cp -R <source_folder> <destination_folder>
Posted by: Guest on August-26-2020
11

copy folder linux

cp -R dir1 dir2
Posted by: Guest on May-14-2020
0

copying directories in linux

#first - open the directory where the file is located.
#cp filename /home/YourUserName/Desktop/ -r
#for example
cp Books /home/kali/Desktop/ -r
Posted by: Guest on May-01-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language