在 Unix 上复制所有子目录及其内容的最安全方法是什么?
What is the safest way to copy all subdirectories and their contents on Unix?
将 Unix 上的所有子目录及其内容复制到其他目录的最安全方法是什么?例如:
root some other directory
/ \ / \
dir_1 .. dir_n --(copy to) ---> to be filled with those copied
directories
我不仅要复制目录,还要复制其中的内容。此外,绝对不能将目录从其原始位置移动,这也是我要复制的原因。
cp -r
-R, -r, --递归
递归复制目录
您可以通过使用 man {name of your command}
查看命令手册来查找命令语法/参数
将 Unix 上的所有子目录及其内容复制到其他目录的最安全方法是什么?例如:
root some other directory
/ \ / \
dir_1 .. dir_n --(copy to) ---> to be filled with those copied
directories
我不仅要复制目录,还要复制其中的内容。此外,绝对不能将目录从其原始位置移动,这也是我要复制的原因。
cp -r
-R, -r, --递归 递归复制目录
您可以通过使用 man {name of your command}