I found this image, and it’s be a great reference for me. I’m not sure who the original author is, but kudos to them
Delete all those pesky .DS_Store files
find . -name ‘.DS_Store’ -type f -delete
find . -type f -name “._*” -exec rm “{}” \;