How do I copy folder with files to another folder in Unix/Linux? [closed]
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am having some issues to copy a folder with files in that folder into another folder. Command cp -r doesn't copy files in the folder. 回答1: The option you're looking for is -R . cp -R path_to_source path_to_destination/ If destination doesn't exist, it will be created. -R means copy directories recursively .