Snippet: Recursively Remove .svn Directories in Linux

Just a couple of snippets found in the net to make my life easier.
In the first one beware of the grave accent quotes.

rm -rf `find . -type d -name .svn`

or someone else proposed

find ./ -name .svn | xargs rm -fr

Category: Linux, snippet | Tags: , , Comment »


Leave a Reply



Back to top