操作系统:Debian。我希望能够以 root 身份和从命令行移动文件和文件夹,而无需更改其所有者和组。这可能吗?
问问题
27124 次
2 回答
13
同步:
-A, --acls preserve ACLs (implies --perms)
-X, --xattrs preserve extended attributes
-o, --owner preserve owner (super-user only)
-g, --group preserve group
--devices preserve device files (super-user only)
--specials preserve special files
人rsync
于 2013-08-20T20:42:09.440 回答
9
该mv
命令保留所有权和时间戳。对于该cp
命令,您可以使用各种命令行选项。例如
cp -p file1 file2
man cp
将显示所有可用选项
于 2013-08-20T20:49:42.490 回答