>Try BatChmod.app from http://www.macchampion.com/arbysoft/BatchMod/Welcome.html
>
>Am 27.10.2011 um 23.16 schrieb Richard Peskin:
>
>> Is there a way to recursively remove all ACL's in a directory? I tried 
>> "chmod -R -a#  0 [directory path] " (where 0 is a possible ACL number id), 
>> but this doesn't work. chmod -a# 0 
filename works for a single file. PErhaps I need a script to do this?

You could also just do this:

$ find [directory path] -type f -exec chmod -a# 0 {} \;

_______________________________________________
MacOSX-talk mailing list
[email protected]
http://www.omnigroup.com/mailman/listinfo/macosx-talk

Reply via email to