LoginSignup
33
26

More than 5 years have passed since last update.

mac でファイルをDLすると付加される@(アットマーク)の消し方

Last updated at Posted at 2014-07-10

Extended Attribute

mac でファイルをダウンロードすると必ずついてくる「@(アットマーク)」

$ ll
total 34864
-rw-r--r--@ 1 white_aspara25  staff   3958071  7  8 10:27 sample.pdf
...

正体はここ↓にも書いてありますが、EA (Extended Attributes)と呼ばれる付加情報で、Finder などの検索に使われるものとのこと。
http://d.hatena.ne.jp/kanonji/20100912/1284292517

消すには、xattr というコマンドを使います。

EAの確認

xattr [file_name]

$ xattr sample.pdf
com.apple.metadata:kMDItemWhereFroms
com.apple.quarantine

特定のEAを削除

xattr -d [attr_name] [file_name]

$ xattr -d com.apple.quarantine sample.pdf
$ xattr sample.pdf
com.apple.metadata:kMDItemWhereFroms

全EAを削除

xattr -c [file_name]

$ xattr -c sample.pdf
$ xattr sample.pdf
$
33
26
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
33
26