<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gablog &#187; find</title>
	<atom:link href="http://gabo.homelinux.com/en/tag/find/feed/" rel="self" type="application/rss+xml" />
	<link>http://gabo.homelinux.com</link>
	<description>Fino ad ora ho avuto un sito brutto. Ora ho un blog.</description>
	<lastBuildDate>Fri, 13 Nov 2009 14:29:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Find</title>
		<link>http://gabo.homelinux.com/en/2009/02/find/</link>
		<comments>http://gabo.homelinux.com/en/2009/02/find/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 08:31:49 +0000</pubDate>
		<dc:creator>gabo</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://gabo.homelinux.com/?p=35</guid>
		<description><![CDATA[Just a little reminder for that useful linux command!
Find recursively all files with the same extension


find /home/gabo -name &#34;*.txt&#34;


Find all files containg a string


find /home/gabo &#124; xargs grep -i &#34;frase da cercare&#34;


Delete recursively all file matching the -name option


find /home/gabo -name '*~' -exec rm -f {} \;
]]></description>
			<content:encoded><![CDATA[<p>Just a little reminder for that useful linux command!</p>
<p>Find recursively all files with the same extension</p>

<pre class="brush: bash;">
find /home/gabo -name &quot;*.txt&quot;
</pre>

<p>Find all files containg a string</p>

<pre class="brush: bash;">
find /home/gabo | xargs grep -i &quot;frase da cercare&quot;
</pre>

<p>Delete recursively all file matching the -name option</p>

<pre class="brush: bash;">
find /home/gabo -name '*~' -exec rm -f {} \;
</pre>]]></content:encoded>
			<wfw:commentRss>http://gabo.homelinux.com/en/2009/02/find/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
