
xattr
List of commands for xattr:
-
xattr:tldr:36d55 xattr: Write an attribute for a given file.$ xattr -w ${attribute_key} ${attribute_value} ${file}try on your machineexplain this command
-
xattr:tldr:55369 xattr: Delete an attribute from a given file.$ xattr -d ${com-apple-quarantine} ${file}try on your machineexplain this command
-
xattr:tldr:7a229 xattr: List key:value extended attributes for a given file.$ xattr -l ${file}try on your machineexplain this command
-
xattr:tldr:a7633 xattr: Recursively delete an attribute in a given directory.$ xattr -rd ${attribute_key} ${directory}try on your machineexplain this command
-
xattr:tldr:d92c3 xattr: Delete all extended attributes from a given file.$ xattr -c ${file}try on your machineexplain this command