<?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: How-To: Recursively remove .svn folders</title>
	<atom:link href="http://blog.evandavey.com/2009/08/how-to-recursively-remove-svn-folders.html/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.evandavey.com/2009/08/how-to-recursively-remove-svn-folders.html</link>
	<description>Tech tips, hints, and general musings. PHP, Perl, Mysql, Javascript, AJAX, JSON, Linux, Mac OSX</description>
	<lastBuildDate>Tue, 22 Nov 2011 00:50:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Uli</title>
		<link>http://blog.evandavey.com/2009/08/how-to-recursively-remove-svn-folders.html/comment-page-1#comment-1309</link>
		<dc:creator>Uli</dc:creator>
		<pubDate>Sun, 06 Sep 2009 11:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.evandavey.com/?p=546#comment-1309</guid>
		<description>There is a limit on how many arguments you can pass on the command line and the method you describe can easily hit this limit.

I always use:
find . -type d -name .svn -print0 &#124; xargs -0 rm -rf

The &#039;-print0&#039; and &#039;-0&#039; options deal with directories/filenames that contain spaces.</description>
		<content:encoded><![CDATA[<p>There is a limit on how many arguments you can pass on the command line and the method you describe can easily hit this limit.</p>
<p>I always use:<br />
find . -type d -name .svn -print0 | xargs -0 rm -rf</p>
<p>The &#8216;-print0&#8242; and &#8216;-0&#8242; options deal with directories/filenames that contain spaces.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

