将Unix上所有子目录及其内容复制到其他目录的最安全的方法是什么?例如:
root some other directory
/ \ / \
dir_1 .. dir_n --(copy to) ---> to be filled with those copied
directories
我不仅要复制目录,还要复制其中的内容。此外,我绝不能将目录从原始位置移动,因此我想复制原因。
答案 0 :(得分:1)
cp -r
-R,-r, - recursive 递归复制目录
您可以通过使用man {name of your command}