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

2016-07-01

递归删除.git目录

find . -name ".git" -type d -exec rm -rf {} \;

递归删除后缀为.iml文件

find . -name "*.iml" -type f -exec rm -rf {} \;
Comments
Write a Comment