1. linux目录中递归删除同名文件夹 # 在当前文件夹及子文件夹下查找.svn文件夹并递归删除 find . -name '.svn' -type d | xargs rm -rf 转载于:https://www.cnblogs.com/junethirty/p/6217058.html