У меня есть следующие специальные атрибуты в моем файле PDF:
-rw-r--r--@ 1 Barnabas  staff  18227 Oct  9 11:34 myfile.pdf
        com.apple.metadata:kMDItemWhereFroms      331 
        com.apple.quarantine       68 
Как я могу их удалить?
У меня есть следующие специальные атрибуты в моем файле PDF:
-rw-r--r--@ 1 Barnabas  staff  18227 Oct  9 11:34 myfile.pdf
        com.apple.metadata:kMDItemWhereFroms      331 
        com.apple.quarantine       68 
Как я могу их удалить?
Используйте xattr для удаления специальных атрибутов:
xattr -d com.apple.quarantine myfile.pdf
xattr -d com.apple.metadata:kMDItemWhereFroms myfile.pdf
От человека xattr:
NAME
 xattr -- display and manipulate extended attributes
SYNOPSIS
     xattr [-lrsvx] file ...
     xattr -p [-lrsvx] attr_name file ...
     xattr -w [-rsx] attr_name attr_value file ...
     xattr -d [-rsv] attr_name file ...
     xattr -c [-rsv] file ...
     xattr -h | --help