If you want to copy a folder from one destination to another you can run the following bash
command:
cp -R /some/dir/ /some/other/dir/
- If
/some/other/dir/
doesn’t exist, it will be created. -R
meanscopy directories recursively
. You can also use-r
since it’s case-insensitive.