<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Recursively remove .svn directories</title>
	<atom:link href="http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/feed" rel="self" type="application/rss+xml" />
	<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2</link>
	<description>For Web Developers</description>
	<lastBuildDate>Sun, 18 Jul 2010 21:01:27 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ryan</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2235</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 29 Sep 2009 00:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2235</guid>
		<description>Another way:

svn export working_directory new_directory

It will copy a directory to the new location without .svn directories.</description>
		<content:encoded><![CDATA[<p>Another way:</p>
<p>svn export working_directory new_directory</p>
<p>It will copy a directory to the new location without .svn directories.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dev, Linux, Tech and Co » Astuce : Supprimer récursivement les répertoires .svn</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2181</link>
		<dc:creator>Dev, Linux, Tech and Co » Astuce : Supprimer récursivement les répertoires .svn</dc:creator>
		<pubDate>Mon, 25 May 2009 09:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2181</guid>
		<description>[...] petite commande bien utile donnée par CrainBrandy qui permet de supprimer récursivement tous les répertoires .svn en commençant par [...]</description>
		<content:encoded><![CDATA[<div style="">
<p>[...] petite commande bien utile donnée par CrainBrandy qui permet de supprimer récursivement tous les répertoires .svn en commençant par [...]</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: bryan</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2179</link>
		<dc:creator>bryan</dc:creator>
		<pubDate>Sat, 23 May 2009 23:46:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2179</guid>
		<description>Thanks for all the comments guys, I will be updating the post shortly.</description>
		<content:encoded><![CDATA[<p>Thanks for all the comments guys, I will be updating the post shortly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2178</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sat, 23 May 2009 14:25:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2178</guid>
		<description>You should use &quot;-depth&quot; as well for the find command.

The reasoning is that without it it will delete the top directories first and then try to delete the already deleted sub directories which wont work for obvious reasons.

Makes no difference if you run a one liner in a shell but might be a PITA if run inside a script.</description>
		<content:encoded><![CDATA[<p>You should use &#8220;-depth&#8221; as well for the find command.</p>
<p>The reasoning is that without it it will delete the top directories first and then try to delete the already deleted sub directories which wont work for obvious reasons.</p>
<p>Makes no difference if you run a one liner in a shell but might be a PITA if run inside a script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: levi_h</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2177</link>
		<dc:creator>levi_h</dc:creator>
		<pubDate>Fri, 22 May 2009 08:35:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2177</guid>
		<description>Or the xargs variant of course:

find . -name .svn &#124; xargs rm -r

I&#039;m impressed with anyone who can remember the syntax for find&#039;s exec switch :)</description>
		<content:encoded><![CDATA[<p>Or the xargs variant of course:</p>
<p>find . -name .svn | xargs rm -r</p>
<p>I&#8217;m impressed with anyone who can remember the syntax for find&#8217;s exec switch <img src='http://www.crainbandy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2176</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 21 May 2009 20:44:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2176</guid>
		<description>I&#039;d actually say that this:

find . -type d -name .svn -exec rm -rf {} \;

is better if for no other reason than the lack of catastrophe in the event of a typo. Sure, it&#039;s being fearful, but that&#039;s definitely better than deleting the whole tree accidentally.</description>
		<content:encoded><![CDATA[<p>I&#8217;d actually say that this:</p>
<p>find . -type d -name .svn -exec rm -rf {} \;</p>
<p>is better if for no other reason than the lack of catastrophe in the event of a typo. Sure, it&#8217;s being fearful, but that&#8217;s definitely better than deleting the whole tree accidentally.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lbruno</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2174</link>
		<dc:creator>lbruno</dc:creator>
		<pubDate>Thu, 21 May 2009 18:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2174</guid>
		<description>find . -name .svn &#124; xargs rm -rf

-exec is for: -exec mv {} /other/ \;</description>
		<content:encoded><![CDATA[<p>find . -name .svn | xargs rm -rf</p>
<p>-exec is for: -exec mv {} /other/ \;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bryan</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2173</link>
		<dc:creator>bryan</dc:creator>
		<pubDate>Thu, 21 May 2009 16:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2173</guid>
		<description>Ah yeah. I&#039;m going to append that to the post -- thanks!</description>
		<content:encoded><![CDATA[<p>Ah yeah. I&#8217;m going to append that to the post &#8212; thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: meinholz</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2172</link>
		<dc:creator>meinholz</dc:creator>
		<pubDate>Thu, 21 May 2009 16:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2172</guid>
		<description>Another option is:

find . -type d -name .svn -exec rm -rf {} \;

Tye -type d isn&#039;t really necessary. If you name a file .svn, doom on you.

I don&#039;t know if this way is better or not, just an alternative.</description>
		<content:encoded><![CDATA[<p>Another option is:</p>
<p>find . -type d -name .svn -exec rm -rf {} \;</p>
<p>Tye -type d isn&#8217;t really necessary. If you name a file .svn, doom on you.</p>
<p>I don&#8217;t know if this way is better or not, just an alternative.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalpesh Sutaria</title>
		<link>http://www.crainbandy.com/linux/recursively-remove-svn-directories-2/comment-page-1#comment-2169</link>
		<dc:creator>Kalpesh Sutaria</dc:creator>
		<pubDate>Wed, 20 May 2009 19:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.crainbandy.com/?p=847#comment-2169</guid>
		<description>Why wouldn&#039;t you use &#039;svn export&#039; instead?</description>
		<content:encoded><![CDATA[<p>Why wouldn&#8217;t you use &#8217;svn export&#8217; instead?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
