<?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: Grep OR Operator</title>
	<atom:link href="http://damonparker.org/blog/2006/11/09/grep-or-operator/feed/" rel="self" type="application/rss+xml" />
	<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/</link>
	<description>code / ecommerce / life</description>
	<lastBuildDate>Sat, 21 Jan 2012 20:11:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: J. E. Aneiros</title>
		<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26812</link>
		<dc:creator>J. E. Aneiros</dc:creator>
		<pubDate>Fri, 10 Jun 2011 17:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26812</guid>
		<description>Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: serdark</title>
		<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26530</link>
		<dc:creator>serdark</dc:creator>
		<pubDate>Thu, 15 Jul 2010 14:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26530</guid>
		<description>yeah that&#039;s why there is sth called egrep! 

you could use: egrep &quot;a&#124;b&quot; txt
or: grep -E &quot;a&#124;b&quot; a.txt

cheers!</description>
		<content:encoded><![CDATA[<p>yeah that&#8217;s why there is sth called egrep! </p>
<p>you could use: egrep &#8220;a|b&#8221; txt<br />
or: grep -E &#8220;a|b&#8221; a.txt</p>
<p>cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26491</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sat, 20 Mar 2010 14:19:14 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26491</guid>
		<description>Why not supporting standard regex in perl and js etc...that is dumb I spent ages until I got here...thanks!</description>
		<content:encoded><![CDATA[<p>Why not supporting standard regex in perl and js etc&#8230;that is dumb I spent ages until I got here&#8230;thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26383</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Sun, 20 Sep 2009 06:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26383</guid>
		<description>Thanks! I always forget the backslash!</description>
		<content:encoded><![CDATA[<p>Thanks! I always forget the backslash!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neo</title>
		<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26358</link>
		<dc:creator>Neo</dc:creator>
		<pubDate>Fri, 11 Sep 2009 21:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26358</guid>
		<description>egrep And Operator= use egrep twice!
first to filter out locations, second filter out titles
$ egrep -i &#039;city1&#124;city2&#039; joblist &#124; egrep -i &#039;director&#124;manager&#039; &gt; joblist2</description>
		<content:encoded><![CDATA[<p>egrep And Operator= use egrep twice!<br />
first to filter out locations, second filter out titles<br />
$ egrep -i &#8216;city1|city2&#8242; joblist | egrep -i &#8216;director|manager&#8217; &gt; joblist2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26292</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 21 Aug 2009 04:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26292</guid>
		<description>Thanks, very useful. Good catch on the backslash.</description>
		<content:encoded><![CDATA[<p>Thanks, very useful. Good catch on the backslash.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26271</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sun, 17 May 2009 21:09:25 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-26271</guid>
		<description>Ha! I&#039;ve just spent ages searching for this.
Great!
My own use:
# iwlist ath0 scan &#124; grep &#039;Cell\&#124;ESS\&#124;Freq&#039;

Far more useful output. Quick site survey.
Cheers!</description>
		<content:encoded><![CDATA[<p>Ha! I&#8217;ve just spent ages searching for this.<br />
Great!<br />
My own use:<br />
# iwlist ath0 scan | grep &#8216;Cell\|ESS\|Freq&#8217;</p>
<p>Far more useful output. Quick site survey.<br />
Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-25963</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Fri, 18 Apr 2008 21:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-25963</guid>
		<description>Haha, I&#039;ve searched for this one to make my final command (don&#039;t output empty lines and lines starting with comments):

grep -v &quot;^#\&#124;^$&quot; my.cnf</description>
		<content:encoded><![CDATA[<p>Haha, I&#8217;ve searched for this one to make my final command (don&#8217;t output empty lines and lines starting with comments):</p>
<p>grep -v &#8220;^#\|^$&#8221; my.cnf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leorick</title>
		<link>http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-25877</link>
		<dc:creator>leorick</dc:creator>
		<pubDate>Thu, 13 Dec 2007 01:22:38 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2006/11/09/grep-or-operator/#comment-25877</guid>
		<description>Thanks a lot, save my day! Me too, always forget the backslash...</description>
		<content:encoded><![CDATA[<p>Thanks a lot, save my day! Me too, always forget the backslash&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using xcache
Database Caching 12/28 queries in 0.007 seconds using xcache
Content Delivery Network via cdn.damonparker.org/q9i5a4w8/cds/dp

Served from: damonparker.org @ 2012-02-10 04:38:01 -->
