Answers for "copy folder linux"

37

copy folders linux

cp -R source_dir destination_dir
#example
cp -R /etc /etc_backup
Posted by: Guest on June-01-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
5

copy folder linux command line

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

linux copy folder with files

cp -R path_to_source path_to_destination/
Posted by: Guest on February-01-2021
1

linux make a copy of a folder in another foldedr

$ scp -r <source_folder> <destination_user>@<destination_host>:<path>
Posted by: Guest on September-29-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language