Linux/Mac 下递归删除指定名称文件(夹)

递归删除.git目录 find . -name ".git" -type d -exec rm -rf {} \; 递归删除后缀为.iml文件 find . -name "*.iml" -type f -exec rm -rf......