
<?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: Printing a Specific Line From a Large File in Linux</title>
	<atom:link href="http://examancer.com/2009/12/printing-a-specific-line-from-a-large-file-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://examancer.com/2009/12/printing-a-specific-line-from-a-large-file-in-linux/</link>
	<description>take in moderation</description>
	<lastBuildDate>Fri, 13 Apr 2012 20:26:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Carl Zulauf</title>
		<link>http://examancer.com/2009/12/printing-a-specific-line-from-a-large-file-in-linux/comment-page-1/#comment-9221</link>
		<dc:creator>Carl Zulauf</dc:creator>
		<pubDate>Mon, 09 May 2011 17:13:49 +0000</pubDate>
		<guid isPermaLink="false">http://examancer.com/?p=164#comment-9221</guid>
		<description>I like that solution. I think it would break on enormous files, but for 99%+ of situations it&#039;s conceptually a bit easier to grasp.</description>
		<content:encoded><![CDATA[<p>I like that solution. I think it would break on enormous files, but for 99%+ of situations it&#8217;s conceptually a bit easier to grasp.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Mornini</title>
		<link>http://examancer.com/2009/12/printing-a-specific-line-from-a-large-file-in-linux/comment-page-1/#comment-8897</link>
		<dc:creator>Tom Mornini</dc:creator>
		<pubDate>Sat, 02 Apr 2011 20:37:06 +0000</pubDate>
		<guid isPermaLink="false">http://examancer.com/?p=164#comment-8897</guid>
		<description>Hello Carl!

I&#039;ve always used another method. it uses more commands, but strikes me as a bit simpler to remember! :-)

To display line 5 of file.txt, try this:

  cat file.txt &#124; head -n 5 &#124; tail -n 1

This is probably less efficient, particularly for very large files.</description>
		<content:encoded><![CDATA[<p>Hello Carl!</p>
<p>I&#8217;ve always used another method. it uses more commands, but strikes me as a bit simpler to remember! <img src='http://examancer.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>To display line 5 of file.txt, try this:</p>
<p>  cat file.txt | head -n 5 | tail -n 1</p>
<p>This is probably less efficient, particularly for very large files.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

