ubuntu中删除某个目录下指定文件夹

来源:互联网 发布:python抓取app数据 编辑:程序博客网 时间:2024/04/29 11:06

以删除某个目录下的所有.svn文件夹为例:

find -name ".svn" -exec rm -rf {} \;