Exemples acl chmod Mac OS X et extended attributs xattr manipulations
Examples acl chmod Mac OS X
#
ls -le
-rw-r--r--+
1 juser wheel 0 Apr 28 14:06 file1
#
chmod +a "admin allow write" file1
#
ls -le
-rw-r--r--+
1 juser wheel 0 Apr 28 14:06 file1
owner:
juser
1:
admin allow write
#
chmod +a "guest deny read" file1
#
ls -le
-rw-r--r--+
1 juser wheel 0 Apr 28 14:06 file1
owner:
juser
1:
guest deny read
2:
admin allow write
#
chmod +a "admin allow delete" file1
#
ls -le
-rw-r--r--+
1 juser wheel 0 Apr 28 14:06 file1
owner:
juser
1:
guest deny read
2:
admin allow write,delete
Use the
Use the xattr
command. You can inspect the extended attributes:
$ xattr s.7z
com.apple.metadata:kMDItemWhereFroms
com.apple.quarantine
and use the
-d
option to delete one extended attribute:$ xattr -d com.apple.quarantine s.7z
$ xattr s.7z
com.apple.metadata:kMDItemWhereFroms
you can also use the
-c
option to remove all extended attributes:$ xattr -c s.7z
$ xattr s.7z
Aucun commentaire:
Enregistrer un commentaire