如何使用 cp 命令而不覆盖目标文件权限
例如
cp /tmp/file /home/file
我不想改变 chown 和 chgrp/home/file
答案1
使用
cp -a
(归档)或
cp -p
(保留模式、所有权和时间戳)
答案2
有更好的答案在 ServerFault:
cp --no-preserve=all source target
答案3
查看 --no-preserve 选项
如何使用 cp 命令而不覆盖目标文件权限
例如
cp /tmp/file /home/file
我不想改变 chown 和 chgrp/home/file
使用
cp -a
(归档)或
cp -p
(保留模式、所有权和时间戳)
有更好的答案在 ServerFault:
cp --no-preserve=all source target
查看 --no-preserve 选项