<?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: Remote Diff</title>
	<atom:link href="http://www.barneyb.com/barneyblog/2005/09/20/remote-diff/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.barneyb.com/barneyblog/2005/09/20/remote-diff/</link>
	<description>Thoughts, rants, and even some code from the mind of Barney Boisvert.</description>
	<pubDate>Fri, 21 Nov 2008 22:17:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Wawrzek</title>
		<link>http://www.barneyb.com/barneyblog/2005/09/20/remote-diff/#comment-142272</link>
		<dc:creator>Wawrzek</dc:creator>
		<pubDate>Thu, 20 Nov 2008 14:54:55 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-142272</guid>
		<description>I think it's worth to add option to pass diff option

if [ $3 = "" ]
then
        opt="-b"
else
        opt=$3
fi</description>
		<content:encoded><![CDATA[<p>I think it's worth to add option to pass diff option</p>
<p>if [ $3 = "" ]<br />
then<br />
        opt="-b"<br />
else<br />
        opt=$3<br />
fi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Hunt</title>
		<link>http://www.barneyb.com/barneyblog/2005/09/20/remote-diff/#comment-46435</link>
		<dc:creator>John Hunt</dc:creator>
		<pubDate>Tue, 06 Nov 2007 00:01:44 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-46435</guid>
		<description>Recursive remote diff?? Aren't we getting into svn/cvs at that point :)</description>
		<content:encoded><![CDATA[<p>Recursive remote diff?? Aren't we getting into svn/cvs at that point :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kul</title>
		<link>http://www.barneyb.com/barneyblog/2005/09/20/remote-diff/#comment-12894</link>
		<dc:creator>Kul</dc:creator>
		<pubDate>Sun, 22 Apr 2007 22:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-12894</guid>
		<description>For recursive diff, you could try using nfs, and pretend they are both local.  Obviously using  --recursive with diff :-)
NFS wont be so great with your transit costs if you have lots of large files though.  Great for LAN environments! - -</description>
		<content:encoded><![CDATA[<p>For recursive diff, you could try using nfs, and pretend they are both local.  Obviously using  &#8211;recursive with diff :-)<br />
NFS wont be so great with your transit costs if you have lots of large files though.  Great for LAN environments! - -</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jürgen</title>
		<link>http://www.barneyb.com/barneyblog/2005/09/20/remote-diff/#comment-245</link>
		<dc:creator>Jürgen</dc:creator>
		<pubDate>Wed, 29 Mar 2006 21:02:33 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-245</guid>
		<description>What I actually have to write, and soon, is a remote *recursive* diff.  Write it, or find one (which is how I got here :)
</description>
		<content:encoded><![CDATA[<p>What I actually have to write, and soon, is a remote *recursive* diff.  Write it, or find one (which is how I got here :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barney</title>
		<link>http://www.barneyb.com/barneyblog/2005/09/20/remote-diff/#comment-244</link>
		<dc:creator>Barney</dc:creator>
		<pubDate>Sat, 14 Jan 2006 14:38:39 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-244</guid>
		<description>horst,

You are right, of course.  A much better way to do it.  I seem to be constantly forgetting how darn versatile ssh is: so much more than just a secure shell.</description>
		<content:encoded><![CDATA[<p>horst,</p>
<p>You are right, of course.  A much better way to do it.  I seem to be constantly forgetting how darn versatile ssh is: so much more than just a secure shell.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: horst</title>
		<link>http://www.barneyb.com/barneyblog/2005/09/20/remote-diff/#comment-243</link>
		<dc:creator>horst</dc:creator>
		<pubDate>Sat, 14 Jan 2006 14:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-243</guid>
		<description>this will happily overwrite the two files "rdiff.1" and "rdiff.2", should they exist in the current directory.

if you really want to diff a _local_ file and a remote one, use something like
ssh remotehost 'cat remotefile' &#124; diff - localfile
...and you don't have to worry about how to create good temporary files</description>
		<content:encoded><![CDATA[<p>this will happily overwrite the two files "rdiff.1&#8243; and "rdiff.2&#8243;, should they exist in the current directory.</p>
<p>if you really want to diff a _local_ file and a remote one, use something like<br />
ssh remotehost 'cat remotefile' | diff - localfile<br />
&#8230;and you don't have to worry about how to create good temporary files</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: muriloq</title>
		<link>http://www.barneyb.com/barneyblog/2005/09/20/remote-diff/#comment-242</link>
		<dc:creator>muriloq</dc:creator>
		<pubDate>Fri, 28 Oct 2005 10:35:31 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=120#comment-242</guid>
		<description>Great script, thanks a lot!</description>
		<content:encoded><![CDATA[<p>Great script, thanks a lot!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
