0

When I ls -la, one of my folders has the following notation

drwxr-xr-x@ 28

what does @ stand for?

For the record, I am using OSX.

ptheofan
  • 115

2 Answers2

1

It means that the folder or file has extended attributes. use

xattr -l <filename>

to see them.

EBGreen
  • 9,655
1

If the file or directory has extended attributes, the permissions field printed by the -l option is followed by a '@' character.

Reference to apple dev site for LS

50-3
  • 3,999