2

完全な権限 (777) (サブディレクトリを含む) を持つバンドル ディレクトリがあります。

cp -r を使用して別のディレクトリにコピーすると、権限の一部が失われることがわかります。

その原因は何ですか? また、アクセス許可を維持したままこ​​のバンドルを移動するにはどうすればよいですか?

私はライオンバージョンを持っています。

ありがとうございました

4

1 に答える 1

3

-p次のフラグを使用します。

cp -Rp whatever whereever

マンページからcp

Cause cp to preserve the following attributes of each source file
in the copy: modification time, access time, file flags, file mode,
user ID, and group ID, as allowed by permissions.  Access Control
Lists (ACLs) and Extended Attributes (EAs), including resource
forks, will also be preserved.

If the user ID and group ID cannot be preserved, no error message
is displayed and the exit value is not altered.
If the source file has its set-user-ID bit on and the user ID can-
not be preserved, the set-user-ID bit is not preserved in the
copy's permissions.  If the source file has its set-group-ID bit on
and the group ID cannot be preserved, the set-group-ID bit is not
preserved in the copy's permissions.  If the source file has both
its set-user-ID and set-group-ID bits on, and either the user ID or
group ID cannot be preserved, neither the set-user-ID nor set-
group-ID bits are preserved in the copy's permissions.
于 2013-02-17T14:15:06.197 に答える