Tag: bash


Snippet: Recursively Remove .svn Directories in Linux

January 29th, 2010 — 12:24am

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

Comment » | Linux, snippet

Back to top