3

Possible Duplicate:
what does the @ mean in ls -l?

What does the @ sign mean in the following "ls" output?

-rw-r--r--@ 1 root wheel 489 Jan 4 13:14 boot.plist
user7089
  • 2,879
  • 3
  • 17
  • 14

1 Answers1

3

the @ indicates an extended permissions set. The -e option will display the extended attributes.

larye
  • 46