Delete the .svn directory recursively

来源:互联网 发布:淘宝网苏绣屏风 编辑:程序博客网 时间:2024/05/19 12:11

Command:

 

Use the following command to delete the .svn or other file or directory recursively:

#find . -type d -name ".svn" |xargs rm -rf