<?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: Spring Cleaning</title>
	<atom:link href="http://www.thelinuxblog.com/spring-cleaning/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thelinuxblog.com/spring-cleaning/</link>
	<description>The Linux Blog, General Linux, Shell Scripts</description>
	<lastBuildDate>Fri, 17 May 2013 01:16:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: TheLinuxBlog.com</title>
		<link>http://www.thelinuxblog.com/spring-cleaning/comment-page-1/#comment-6911</link>
		<dc:creator>TheLinuxBlog.com</dc:creator>
		<pubDate>Mon, 29 Oct 2012 14:11:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.thelinuxblog.com/#comment-6911</guid>
		<description><![CDATA[You&#039;re right, and quicker + xargs can handle more results I believe. I used the while method to use echo and less so that I could confirm that I wanted to delete them. I guess xargs would have worked for that, but it would have been two steps.]]></description>
		<content:encoded><![CDATA[<p>You&#8217;re right, and quicker + xargs can handle more results I believe. I used the while method to use echo and less so that I could confirm that I wanted to delete them. I guess xargs would have worked for that, but it would have been two steps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://www.thelinuxblog.com/spring-cleaning/comment-page-1/#comment-6910</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Mon, 29 Oct 2012 10:19:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.thelinuxblog.com/#comment-6910</guid>
		<description><![CDATA[Nice post ! Wouldn&#039;t ist be simpler to use xargs for this ?

find . -iname &quot;thumbs.db&quot; &#124; xargs rm

instead

find . -iname &quot;thumbs.db&quot; &#124; while read i ; do rm &quot;$i&quot;; done;]]></description>
		<content:encoded><![CDATA[<p>Nice post ! Wouldn&#8217;t ist be simpler to use xargs for this ?</p>
<p>find . -iname &#8220;thumbs.db&#8221; | xargs rm</p>
<p>instead</p>
<p>find . -iname &#8220;thumbs.db&#8221; | while read i ; do rm &#8220;$i&#8221;; done;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TheLinuxBlog.com</title>
		<link>http://www.thelinuxblog.com/spring-cleaning/comment-page-1/#comment-6794</link>
		<dc:creator>TheLinuxBlog.com</dc:creator>
		<pubDate>Tue, 03 Apr 2012 13:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.thelinuxblog.com/#comment-6794</guid>
		<description><![CDATA[Yes. This is true thanks for commenting.]]></description>
		<content:encoded><![CDATA[<p>Yes. This is true thanks for commenting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TheLinuxBlog.com</title>
		<link>http://www.thelinuxblog.com/spring-cleaning/comment-page-1/#comment-6793</link>
		<dc:creator>TheLinuxBlog.com</dc:creator>
		<pubDate>Tue, 03 Apr 2012 13:49:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.thelinuxblog.com/#comment-6793</guid>
		<description><![CDATA[Meh. I use them from to time. Most cases I don&#039;t just beacause I&#039;m lazy or am grepping the results]]></description>
		<content:encoded><![CDATA[<p>Meh. I use them from to time. Most cases I don&#8217;t just beacause I&#8217;m lazy or am grepping the results</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pirat</title>
		<link>http://www.thelinuxblog.com/spring-cleaning/comment-page-1/#comment-6792</link>
		<dc:creator>Pirat</dc:creator>
		<pubDate>Tue, 03 Apr 2012 09:06:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.thelinuxblog.com/#comment-6792</guid>
		<description><![CDATA[Instead using pipes you can simply call delete from find.
ie. find . -iname &quot;thumbs.db&quot; -delete 
also handy is finding empty directories:
find . -type d -empty
Regards]]></description>
		<content:encoded><![CDATA[<p>Instead using pipes you can simply call delete from find.<br />
ie. find . -iname &#8220;thumbs.db&#8221; -delete<br />
also handy is finding empty directories:<br />
find . -type d -empty<br />
Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: micah</title>
		<link>http://www.thelinuxblog.com/spring-cleaning/comment-page-1/#comment-6791</link>
		<dc:creator>micah</dc:creator>
		<pubDate>Mon, 02 Apr 2012 14:22:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.thelinuxblog.com/#comment-6791</guid>
		<description><![CDATA[no love for -exec or -execdir?]]></description>
		<content:encoded><![CDATA[<p>no love for -exec or -execdir?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
