Answers for "how to copy entire directory to existing directory in linux"

1

how to copy directory to another directory in linux

cp -r <DIRECTORYPATH> <WHEREYOUWANTTOCOPYTO>
#for example
cp -r /home/thor/asia/india/bangalore /home/thor/
Posted by: Guest on December-28-2020
0

linux copy all directory contents to another directory

rsync -a source/ destination
Posted by: Guest on May-02-2021

Code answers related to "how to copy entire directory to existing directory in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language