<?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: Linux pipe find with rm</title>
	<atom:link href="http://www.andreabelvedere.com/coding/linux-pipe-find-rm/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm</link>
	<description>Coding, Life</description>
	<lastBuildDate>Sun, 22 Jan 2012 13:12:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: John V. Kjellman</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/comment-page-1#comment-6784</link>
		<dc:creator>John V. Kjellman</dc:creator>
		<pubDate>Sat, 16 Jul 2011 13:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16#comment-6784</guid>
		<description>What if you wanted to run rm with the -i option, so you could approve each file to be rm&#039;ed?</description>
		<content:encoded><![CDATA[<p>What if you wanted to run rm with the -i option, so you could approve each file to be rm&#8217;ed?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Black</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/comment-page-1#comment-2163</link>
		<dc:creator>Black</dc:creator>
		<pubDate>Sun, 28 Nov 2010 01:12:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16#comment-2163</guid>
		<description>@yurikomuro no it doesn&#039;t require more weed.</description>
		<content:encoded><![CDATA[<p>@yurikomuro no it doesn&#8217;t require more weed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CMS Application</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/comment-page-1#comment-1963</link>
		<dc:creator>CMS Application</dc:creator>
		<pubDate>Tue, 09 Nov 2010 03:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16#comment-1963</guid>
		<description>Hi..........I found your website through search engine. I like your website contentI&#039;m deeply in love with every single piece of information you post here.I&#039;ll b back often to read more updates...Now this is hghly recommeded post for me. I will surely email this to my friendI am very much impressedThanks............</description>
		<content:encoded><![CDATA[<p>Hi&#8230;&#8230;&#8230;.I found your website through search engine. I like your website contentI&#8217;m deeply in love with every single piece of information you post here.I&#8217;ll b back often to read more updates&#8230;Now this is hghly recommeded post for me. I will surely email this to my friendI am very much impressedThanks&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Locksmith Knoxville</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/comment-page-1#comment-1644</link>
		<dc:creator>Locksmith Knoxville</dc:creator>
		<pubDate>Tue, 28 Sep 2010 00:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16#comment-1644</guid>
		<description>For reasons unknown i&#039;m receiving a blank page while i attempt to post a comment,do you recognize the particular reason why its heading?i&#039;m making use of oprea web-browser</description>
		<content:encoded><![CDATA[<p>For reasons unknown i&#8217;m receiving a blank page while i attempt to post a comment,do you recognize the particular reason why its heading?i&#8217;m making use of oprea web-browser</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sweed Test</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/comment-page-1#comment-1505</link>
		<dc:creator>Sweed Test</dc:creator>
		<pubDate>Tue, 07 Sep 2010 21:24:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16#comment-1505</guid>
		<description>great site.. yo no what i mean?</description>
		<content:encoded><![CDATA[<p>great site.. yo no what i mean?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrea belvedere</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/comment-page-1#comment-142</link>
		<dc:creator>andrea belvedere</dc:creator>
		<pubDate>Tue, 30 Dec 2008 22:30:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16#comment-142</guid>
		<description>fixed.</description>
		<content:encoded><![CDATA[<p>fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrea belvedere</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/comment-page-1#comment-141</link>
		<dc:creator>andrea belvedere</dc:creator>
		<pubDate>Tue, 30 Dec 2008 22:24:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16#comment-141</guid>
		<description>Thanks Florian, 
you are absolutely right, &lt;code&gt;rm&lt;/code&gt; will be executed for each file discovered by &lt;code&gt;find&lt;/code&gt;.
The curly brackets &lt;code&gt;{}&lt;/code&gt; are replaced with the current discovered file.
The semicolon &lt;code&gt;;&lt;/code&gt; signals the end of the arguments passed to &lt;code&gt;rm&lt;/code&gt;
The backslash &lt;code&gt;\&lt;/code&gt; escapes the semicolon &lt;code&gt;;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Thanks Florian,<br />
you are absolutely right, <code>rm</code> will be executed for each file discovered by <code>find</code>.<br />
The curly brackets <code>{}</code> are replaced with the current discovered file.<br />
The semicolon <code>;</code> signals the end of the arguments passed to <code>rm</code><br />
The backslash <code>\</code> escapes the semicolon <code>;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florian Marcovici</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/comment-page-1#comment-140</link>
		<dc:creator>Florian Marcovici</dc:creator>
		<pubDate>Tue, 30 Dec 2008 12:04:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16#comment-140</guid>
		<description>damn, they modified my &#039; but you get the point :)</description>
		<content:encoded><![CDATA[<p>damn, they modified my &#8216; but you get the point :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florian Marcovici</title>
		<link>http://www.andreabelvedere.com/coding/linux-pipe-find-rm/comment-page-1#comment-139</link>
		<dc:creator>Florian Marcovici</dc:creator>
		<pubDate>Tue, 30 Dec 2008 12:03:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.andreabelvedere.com/?p=16#comment-139</guid>
		<description>you can achieve the same result like this:
&lt;code&gt;find . -name &#039;*~&#039; -exec rm {} \;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>you can achieve the same result like this:<br />
<code>find . -name '*~' -exec rm {} \;</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

