Como remover atributos estendidos mac de um arquivo?

1

Eu tenho os seguintes atributos especiais no meu arquivo pdf:

-rw-r--r--@ 1 Barnabas  staff  18227 Oct  9 11:34 myfile.pdf
        com.apple.metadata:kMDItemWhereFroms      331 
        com.apple.quarantine       68 

Como posso removê-los?

    
por Barnabas Szabolcs 13.10.2014 / 14:31

1 resposta

2

Use xattr para excluir os atributos especiais:

xattr -d com.apple.quarantine myfile.pdf
xattr -d com.apple.metadata:kMDItemWhereFroms myfile.pdf

De man 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
    
por 13.10.2014 / 17:56