<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Recursively delete all .svn directories</title>
	<atom:link href="http://blog.ankur.org/2008/05/25/recursively-delete-all-svn-directories/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ankur.org/2008/05/25/recursively-delete-all-svn-directories/</link>
	<description>Ankur Bulsara</description>
	<pubDate>Tue, 06 Jan 2009 09:57:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Bowei</title>
		<link>http://blog.ankur.org/2008/05/25/recursively-delete-all-svn-directories/#comment-17</link>
		<dc:creator>Bowei</dc:creator>
		<pubDate>Thu, 18 Dec 2008 23:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://ankur.org/weblog/2008/05/25/recursively-delete-all-svn-directories/#comment-17</guid>
		<description>find . -name \*.svn -exec rm -r {} \;

The -exec is very useful if your command is not as amenable to xargs. The "{}" is replaced by the full path of the file found by find.</description>
		<content:encoded><![CDATA[<p>find . -name \*.svn -exec rm -r {} \;</p>
<p>The -exec is very useful if your command is not as amenable to xargs. The &#8220;{}&#8221; is replaced by the full path of the file found by find.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
