<?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: find &#124; xargs grep: hack of the day</title>
	<atom:link href="http://www.performantdesign.com/2007/09/05/find-xargs-grep-hack-of-the-day/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.performantdesign.com/2007/09/05/find-xargs-grep-hack-of-the-day/</link>
	<description></description>
	<lastBuildDate>Mon, 08 Aug 2011 19:00:37 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nicholas</title>
		<link>http://www.performantdesign.com/2007/09/05/find-xargs-grep-hack-of-the-day/comment-page-1/#comment-195</link>
		<dc:creator>Nicholas</dc:creator>
		<pubDate>Thu, 24 Apr 2008 12:49:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.performantdesign.com/blog/2007/09/05/find-xargs-grep-hack-of-the-day/#comment-195</guid>
		<description>You can also do it like this:

find . -iname &quot;*.java&quot; -print0 &#124; xargs -0 grep -i &quot;SearchString&quot; &#124; less

the -print0 lets find break each result with a NULL character, instead of a space, and the xargs -0 tells it the same.</description>
		<content:encoded><![CDATA[<p>You can also do it like this:</p>
<p>find . -iname &#8220;*.java&#8221; -print0 | xargs -0 grep -i &#8220;SearchString&#8221; | less</p>
<p>the -print0 lets find break each result with a NULL character, instead of a space, and the xargs -0 tells it the same.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

