MacOS下删除".DS_Store"文件

在需要删除的文件夹下执行一下指令:

sudo find ./ -name ".DS_Store" -depth -exec rm {} ;
原文地址:https://www.cnblogs.com/YooHoeh/p/12098882.html