Terminal Tip: Removing hidden files recursively
If you need to remove all those hidden ‘.files’ from some folder recursively, you can cd
into the directory where you want to remove them and use the code below:
find . -name ._\* -print0 | xargs -0 rm -f