<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: unix command to delete the .svn folders</title>
	<link>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/</link>
	<description>my blog, mostly covering the technical side of web design</description>
	<pubDate>Sun, 01 Aug 2010 10:33:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.3</generator>

	<item>
		<title>by: Tom</title>
		<link>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-14112</link>
		<pubDate>Sat, 06 Mar 2010 10:54:19 +0000</pubDate>
		<guid>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-14112</guid>
					<description>Depending on the situation, you might be able to just use the 'svn export' to check out a clean tree?</description>
		<content:encoded><![CDATA[<p>Depending on the situation, you might be able to just use the &#8217;svn export&#8217; to check out a clean tree?
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Tim</title>
		<link>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-13967</link>
		<pubDate>Sat, 28 Feb 2009 04:53:01 +0000</pubDate>
		<guid>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-13967</guid>
					<description>I use this to delete temp mac osx files

find . -name “._*” -print0 &amp;#124; xargs -0 rm -Rf

handy to run before uploading a project via ftp.</description>
		<content:encoded><![CDATA[<p>I use this to delete temp mac osx files</p>
<p>find . -name “._*” -print0 | xargs -0 rm -Rf</p>
<p>handy to run before uploading a project via ftp.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Braden</title>
		<link>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-4557</link>
		<pubDate>Tue, 06 Mar 2007 22:18:23 +0000</pubDate>
		<guid>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-4557</guid>
					<description>Thanks a thousand. You too, Matt.</description>
		<content:encoded><![CDATA[<p>Thanks a thousand. You too, Matt.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Craig</title>
		<link>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-2572</link>
		<pubDate>Tue, 09 Jan 2007 14:57:16 +0000</pubDate>
		<guid>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-2572</guid>
					<description>Thanks a bunch for this... Looking for an easy way to remove the .svn dirs without having to go to each directory.  Saved me some serious time.</description>
		<content:encoded><![CDATA[<p>Thanks a bunch for this&#8230; Looking for an easy way to remove the .svn dirs without having to go to each directory.  Saved me some serious time.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Matt</title>
		<link>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-135</link>
		<pubDate>Tue, 17 Oct 2006 15:16:24 +0000</pubDate>
		<guid>http://www.rickhurst.co.uk/2006/10/17/unix-command-to-delete-the-svn-folders/#comment-135</guid>
					<description>Or a slightly safer version:

find . -name &quot;.svn&quot; -print0 &amp;#124; xargs -0 rm -Rf

(those are zeros, not ohs, if your font shows them ambigiously)

This is slightly safer as is used a null byte () as the delimiter between entries, rather than a space.  This means that  if I happen to have a folder called &quot;foo&quot;  and one with spaces in called &quot;foo bar&quot;, you might find a .svn dir present in &quot;foo bar&quot; will cause the whole of the &quot;foo&quot; directory to be deleted.

-Matt</description>
		<content:encoded><![CDATA[<p>Or a slightly safer version:</p>
<p>find . -name &#8220;.svn&#8221; -print0 | xargs -0 rm -Rf</p>
<p>(those are zeros, not ohs, if your font shows them ambigiously)</p>
<p>This is slightly safer as is used a null byte () as the delimiter between entries, rather than a space.  This means that  if I happen to have a folder called &#8220;foo&#8221;  and one with spaces in called &#8220;foo bar&#8221;, you might find a .svn dir present in &#8220;foo bar&#8221; will cause the whole of the &#8220;foo&#8221; directory to be deleted.</p>
<p>-Matt
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
