<?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: Unix command line tip of the day: How to recursively add all newly added files to Subversion in an existing working copy</title>
	<atom:link href="http://www.gabrielserafini.com/archives/2006/09/01/unix-command-line-tip-of-the-day-how-to-recursively-add-all-newly-added-files-to-subversion-in-an-existing-working-copy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gabrielserafini.com/archives/2006/09/01/unix-command-line-tip-of-the-day-how-to-recursively-add-all-newly-added-files-to-subversion-in-an-existing-working-copy/</link>
	<description>Web Design, Development and Business ... infopoet</description>
	<pubDate>Fri, 21 Nov 2008 23:35:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Mark Lennox</title>
		<link>http://www.gabrielserafini.com/archives/2006/09/01/unix-command-line-tip-of-the-day-how-to-recursively-add-all-newly-added-files-to-subversion-in-an-existing-working-copy/#comment-59707</link>
		<dc:creator>Mark Lennox</dc:creator>
		<pubDate>Wed, 24 Oct 2007 06:53:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.gabrielserafini.com/?p=715#comment-59707</guid>
		<description>Thanks for that - I'll really have to learn to use sed!

I changed the command to allow me to add directories and files with spaces in them (I work with the svn repositories in windows too...)

svn st &#124; grep ? &#124; sed 's/^?[\t]*//;' &#124; sed 's/^[ ]*//g;' &#124; sed 's/\s/\\ /g;' &#124; xargs svn add

seems to work ok - I might even refactor the regular expressions when I have the time - cheers again!</description>
		<content:encoded><![CDATA[<p>Thanks for that - I&#8217;ll really have to learn to use sed!</p>
<p>I changed the command to allow me to add directories and files with spaces in them (I work with the svn repositories in windows too&#8230;)</p>
<p>svn st | grep ? | sed &#8217;s/^?[\t]*//;&#8217; | sed &#8217;s/^[ ]*//g;&#8217; | sed &#8217;s/\s/\\ /g;&#8217; | xargs svn add</p>
<p>seems to work ok - I might even refactor the regular expressions when I have the time - cheers again!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
