Answers for "copy contents of folder to another folder in terminal"

0

copy contents of folder to another folder in terminal

cp -r source_folder/. dest_folder
# notice the /. at the end of source folder.
# this copies the contents of the folder rather than the folder itself.
Posted by: Guest on February-26-2022

Code answers related to "copy contents of folder to another folder in terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language