If you need to remove all those hidden ‘.files’ from some folder recursively, you can cd into where you want to remove and use the code below:
find . -name ._\* -print0 | xargs -0 rm -f
Electronics, Web, Travel & More
If you need to remove all those hidden ‘.files’ from some folder recursively, you can cd into where you want to remove and use the code below:
find . -name ._\* -print0 | xargs -0 rm -f
find . -name ._* -delete