Powered by Blogger.

Specifically remove files starting with ._


On Mac OS, open terminal.app

find . -type f -name "._*" -print


to list all files whose name start with ._


find . -type f -name "._*" -delete


delete all files whose name start with ._

No comments