This is a very short post about removing the SVN files and folders from your directories.
find ./ -name ".svn" | xargs rm -Rf
Hi,
you can also use the -exec flag
find ./ -name .svn -exec rm -rf {} \;
<code>
<blockcode>
<c>
<cpp>
<drupal5>
<drupal6>
<java>
<javascript>
<php>
<python>
<ruby>
<foo>
[foo]
More information about formatting options
Comments
Hi,you can also use the -exec
Hi,
you can also use the -exec flag
find ./ -name .svn -exec rm -rf {} \;Post new comment