What's the "@"mark at the file description?
Solution 1:
It means that the file has extended attributes. To see these attributes, run xattr -l file
, to see the extended attributes of a particular file, or ls -l@
to see the extended attributes of all files in a particular directory.
See the man page for xattr as well.