<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: fdupes Tutorial</title>
	<atom:link href="http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/</link>
	<description>Tons of fun at a xterm!</description>
	<lastBuildDate>Fri, 16 Oct 2009 18:58:04 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: none</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5692</link>
		<dc:creator>none</dc:creator>
		<pubDate>Fri, 16 Oct 2009 18:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5692</guid>
		<description>you&#039;ll need to adjust the quotes in my example above since the blog soft replaced them</description>
		<content:encoded><![CDATA[<p>you&#8217;ll need to adjust the quotes in my example above since the blog soft replaced them</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: none</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5681</link>
		<dc:creator>none</dc:creator>
		<pubDate>Fri, 25 Sep 2009 14:28:02 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5681</guid>
		<description>you can pipe the list of files into the iterator:

 cat dupes.txt &#124; while read line;do rm -v &quot;$line&quot;;done</description>
		<content:encoded><![CDATA[<p>you can pipe the list of files into the iterator:</p>
<p> cat dupes.txt | while read line;do rm -v &#8220;$line&#8221;;done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James McGill</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5601</link>
		<dc:creator>James McGill</dc:creator>
		<pubDate>Sat, 18 Apr 2009 18:36:26 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5601</guid>
		<description>I&#039;m on the ambitious task of finding and removing duplicates against an 8 terabyte network attached storage.

Even breaking it down into reasonably sized chunks, fdupes takes days (maybe weeks, we don&#039;t know yet)  to run, but it doesn&#039;t overgrow in memory when presented with huge numbers of files.
(That&#039;s what I was afraid it would do, and fslint choked on our filesystem.)</description>
		<content:encoded><![CDATA[<p>I&#8217;m on the ambitious task of finding and removing duplicates against an 8 terabyte network attached storage.</p>
<p>Even breaking it down into reasonably sized chunks, fdupes takes days (maybe weeks, we don&#8217;t know yet)  to run, but it doesn&#8217;t overgrow in memory when presented with huge numbers of files.<br />
(That&#8217;s what I was afraid it would do, and fslint choked on our filesystem.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergio</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5577</link>
		<dc:creator>Sergio</dc:creator>
		<pubDate>Wed, 04 Feb 2009 13:02:47 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5577</guid>
		<description>This is a nice approach:

&lt;code&gt;b=&quot;&quot;
fdupes tmp/ --recurse &#124; \
while read f
do
if [ &quot;$f&quot; = &quot;&quot; ]
then
b=”&quot;
else
if [ &quot;$b&quot; = &quot;&quot; ]
then
b=”$f”
else
rm “$f” &amp;&amp; echo “Removed \”$f\”&quot;
fi
fi
done&lt;/code&gt;

(Source: http://www.miriamruiz.es/weblog/?p=79 )</description>
		<content:encoded><![CDATA[<p>This is a nice approach:</p>
<p><code>b=""<br />
fdupes tmp/ --recurse | \<br />
while read f<br />
do<br />
if [ "$f" = "" ]<br />
then<br />
b=”"<br />
else<br />
if [ "$b" = "" ]<br />
then<br />
b=”$f”<br />
else<br />
rm “$f” &amp;&amp; echo “Removed \”$f\”"<br />
fi<br />
fi<br />
done</code></p>
<p>(Source: <a href="http://www.miriamruiz.es/weblog/?p=79" rel="nofollow">http://www.miriamruiz.es/weblog/?p=79</a> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5541</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 24 Dec 2008 01:47:17 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5541</guid>
		<description>A little unclear.  The sort command doesn&#039;t specify which filelists should be passed as arguments (previous steps mention two filelists: the original -rf one, the one with first entries omitted).  The while loop doesn&#039;t mention which of the three filelists to pass, and where.  Ryan&#039;s Comment 1 defines variables as a tutorial should.  Last, the while loop command mentioned in the tutorial is still incorrect lacking &quot;&lt; $removelist&quot;.  There are also various typos, which are annoying (&quot;use start&quot;).</description>
		<content:encoded><![CDATA[<p>A little unclear.  The sort command doesn&#8217;t specify which filelists should be passed as arguments (previous steps mention two filelists: the original -rf one, the one with first entries omitted).  The while loop doesn&#8217;t mention which of the three filelists to pass, and where.  Ryan&#8217;s Comment 1 defines variables as a tutorial should.  Last, the while loop command mentioned in the tutorial is still incorrect lacking &#8220;&lt; $removelist&#8221;.  There are also various typos, which are annoying (&#8220;use start&#8221;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Recursive copy to a RANDOM name - Page 2 - UNIX for Dummies Questions &#38; Answers - The UNIX and Linux Forums</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5530</link>
		<dc:creator>Recursive copy to a RANDOM name - Page 2 - UNIX for Dummies Questions &#38; Answers - The UNIX and Linux Forums</dc:creator>
		<pubDate>Thu, 23 Oct 2008 11:19:34 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5530</guid>
		<description>[...] mind that the file paths/names had difficult characters. The following fdupes tutuial was useful: fdupes Tutorial Life at the CLI I&#039;ve double checked the results with variations on the following command: find . -type f -exec [...]</description>
		<content:encoded><![CDATA[<p>[...] mind that the file paths/names had difficult characters. The following fdupes tutuial was useful: fdupes Tutorial Life at the CLI I&#8217;ve double checked the results with variations on the following command: find . -type f -exec [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahsan Ali</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5447</link>
		<dc:creator>Ahsan Ali</dc:creator>
		<pubDate>Fri, 30 May 2008 13:34:05 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5447</guid>
		<description>Thanks, this was very useful even all the way over here in Pakistan. :)</description>
		<content:encoded><![CDATA[<p>Thanks, this was very useful even all the way over here in Pakistan. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fdupes Tutorial @ โหน่ง : N^o^NG</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5292</link>
		<dc:creator>fdupes Tutorial @ โหน่ง : N^o^NG</dc:creator>
		<pubDate>Sun, 09 Dec 2007 14:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-5292</guid>
		<description>[...] http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/  [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/ " rel="nofollow">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/ </a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flightlessbird</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-4970</link>
		<dc:creator>Flightlessbird</dc:creator>
		<pubDate>Sat, 13 Oct 2007 13:10:12 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-4970</guid>
		<description>Fantastic help - even a total newbie like me could follow it. Very useful.</description>
		<content:encoded><![CDATA[<p>Fantastic help &#8211; even a total newbie like me could follow it. Very useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-4814</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 02 Oct 2007 15:29:45 +0000</pubDate>
		<guid isPermaLink="false">http://dosnlinux.wordpress.com/2007/02/18/fdupes-tutorial/#comment-4814</guid>
		<description>Aha, I switched to bash and now all is OK.</description>
		<content:encoded><![CDATA[<p>Aha, I switched to bash and now all is OK.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
