I am using Mac OSX. When I type ls -l
I see something like
drwxr-xr-x@ 12 xonic staff 408 22 Jun 19:00 .
drwxr-xr-x 9 xonic staff 306 22 Jun 19:42 ..
-rwxrwxrwx@ 1 xonic staff 6148 25 Mai 23:04 .DS_Store
-rw-r--r--@ 1 xonic staff 17284 22 Jun 00:20 filmStrip.cpp
-rw-r--r--@ 1 xonic staff 3843 21 Jun 21:20 filmStrip.h
What do the @'s mean?
find . -iname '*.ext' -print0 | xargs -0 xattr -d com.apple.quarantine
. That's why I found this question. – jcollum Jun 26 '15 at 21:13find . -type f -xattr -print | xargs -0 xattr -d com.apple.quarantine
(not sure if the-type f
is needed). Although for some reason neither command is working for me at the moment... This one worked for me:find . -type f -xattr -exec xattr -d com.apple.quarantine {} \;
– Michael Mar 03 '16 at 18:32