<?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: Tac and Reverse Grep</title>
	<atom:link href="http://clifgriffin.com/2008/11/25/tac-and-reverse-grep/feed/" rel="self" type="application/rss+xml" />
	<link>http://clifgriffin.com/2008/11/25/tac-and-reverse-grep/</link>
	<description>A low carb salad featuring healthy portions of politics, humor, and nerdery.</description>
	<lastBuildDate>Fri, 30 Jul 2010 05:49:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Reverse grep through large logs &#124; Animoto Labs</title>
		<link>http://clifgriffin.com/2008/11/25/tac-and-reverse-grep/comment-page-1/#comment-1570</link>
		<dc:creator>Reverse grep through large logs &#124; Animoto Labs</dc:creator>
		<pubDate>Sun, 12 Jul 2009 21:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://clifgriffin.com/?p=589#comment-1570</guid>
		<description>[...] I found an incredibly handy trick that I&#8217;ve wanted to know for ages through Clifton Griffin&#8217;s blog here. [...]</description>
		<content:encoded><![CDATA[<p>[...] I found an incredibly handy trick that I&#8217;ve wanted to know for ages through Clifton Griffin&#8217;s blog here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: clifgriffin</title>
		<link>http://clifgriffin.com/2008/11/25/tac-and-reverse-grep/comment-page-1/#comment-456</link>
		<dc:creator>clifgriffin</dc:creator>
		<pubDate>Sun, 30 Nov 2008 13:01:29 +0000</pubDate>
		<guid isPermaLink="false">http://clifgriffin.com/?p=589#comment-456</guid>
		<description>This would work, but it seems a bit inefficient.  It has to search the whole file, return matches, and take the last match.  It is a shortcut to the 7th field...but I&#039;m not sure the iteration from the top of the file is efficient. Especially if you have a large log file (like in my case).

The method I listed starts at the end of the file...a much shorter distance to the information in question.  I&#039;m also assuming that cut is about as efficient as awk for this type of search, but I&#039;ll let smarter people than I sort that out.</description>
		<content:encoded><![CDATA[<p>This would work, but it seems a bit inefficient.  It has to search the whole file, return matches, and take the last match.  It is a shortcut to the 7th field&#8230;but I&#8217;m not sure the iteration from the top of the file is efficient. Especially if you have a large log file (like in my case).</p>
<p>The method I listed starts at the end of the file&#8230;a much shorter distance to the information in question.  I&#8217;m also assuming that cut is about as efficient as awk for this type of search, but I&#8217;ll let smarter people than I sort that out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://clifgriffin.com/2008/11/25/tac-and-reverse-grep/comment-page-1/#comment-453</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Sat, 29 Nov 2008 19:28:30 +0000</pubDate>
		<guid isPermaLink="false">http://clifgriffin.com/?p=589#comment-453</guid>
		<description>awk &#039;/match/ { print $7 }&#039; file &#124; tail -1</description>
		<content:encoded><![CDATA[<p>awk &#8216;/match/ { print $7 }&#8217; file | tail -1</p>
]]></content:encoded>
	</item>
</channel>
</rss>
