Possible Duplicate:
what does the @ mean on the output of ls on os x terminal?
-rw-r--r--@ 1 jeremysmith staff 249444 Oct 9 12:03 small.xml
and the file as it is uploaded, which will not be parsed:
-rw-r--r-- 1 jeremysmith staff 249444 Oct 9 13:17 public/uploads/small.xml
I don't understand what the @ is saying about the difference between permissions here. This is on OSX 10.7.
man ls? – xtofl Oct 9 '11 at 18:05manpage oflsexplains what it is: If the file or directory has extended attributes, the permissions field printed by the -l option is followed by a '@' character., and how to get more details:-@ Display extended attribute keys and sizes in long (-l) output.– Daniel Beck Oct 9 '11 at 18:27