//刪除文件夾下的所有 .svn 文件 find . -name ".svn" | xargs rm -Rf //刪除文件夾下的所有 .git 文件 find . -name ".git" | xargs rm -Rf