Reputation: 985
This is the output of ls -l command on mac os terminal
drwx------@ 47 abhishekkumarjha staff 1598 Nov 15 00:05 Library
drwx------+ 3 abhishekkumarjha staff 102 Apr 9 2015 Movies
What does '@' or '+' symbol signify?
Upvotes: 0
Views: 1119
Reputation: 111
If the file or directory has extended attributes, the permissions field printed by the -l option is followed by a '@' character. Otherwise, if the file or directory has extended security information (such as an access control list), the permissions field printed by the -l option is followed by a '+' character.
You can find more info on Apple's developer website and look for The Long Format
Upvotes: 1