<?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: Put awk to work</title>
	<atom:link href="http://blog.kusw3.com/2009/08/27/put-awk-to-work/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kusw3.com/2009/08/27/put-awk-to-work/</link>
	<description>Blogging a Kus life</description>
	<lastBuildDate>Sun, 13 Jun 2010 14:56:43 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kus</title>
		<link>http://blog.kusw3.com/2009/08/27/put-awk-to-work/comment-page-1/#comment-1698</link>
		<dc:creator>Kus</dc:creator>
		<pubDate>Fri, 11 Sep 2009 09:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kusw3.com/?p=93#comment-1698</guid>
		<description>Thanks Jadu!

As you can see I&#039;m rookie in awk so any improvement to this tips are really welcome!</description>
		<content:encoded><![CDATA[<p>Thanks Jadu!</p>
<p>As you can see I&#8217;m rookie in awk so any improvement to this tips are really welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jadu Saikia</title>
		<link>http://blog.kusw3.com/2009/08/27/put-awk-to-work/comment-page-1/#comment-1697</link>
		<dc:creator>Jadu Saikia</dc:creator>
		<pubDate>Thu, 10 Sep 2009 18:16:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kusw3.com/?p=93#comment-1697</guid>
		<description>Nice blog. 

An optimization from my side: 

$ cat /etc/fstab &#124; grep nfs &#124; grep -v &#039;#&#039; &#124; awk &#039;{print &quot;&#124; &quot;$1&quot; &#124; &quot;$2&quot; &#124;&quot;}&#039;

to 

$ awk &#039;/nfs/ &amp;&amp; !/^#/ {print $1,$2}&#039; OFS=\&#124; /etc/fstab

few posts on awk : 

http://unstableme.blogspot.com/search/label/Awk

Thanks.</description>
		<content:encoded><![CDATA[<p>Nice blog. </p>
<p>An optimization from my side: </p>
<p>$ cat /etc/fstab | grep nfs | grep -v &#8216;#&#8217; | awk &#8216;{print &#8220;| &#8220;$1&#8243; | &#8220;$2&#8243; |&#8221;}&#8217;</p>
<p>to </p>
<p>$ awk &#8216;/nfs/ &amp;&amp; !/^#/ {print $1,$2}&#8217; OFS=\| /etc/fstab</p>
<p>few posts on awk : </p>
<p><a href="http://unstableme.blogspot.com/search/label/Awk" rel="nofollow">http://unstableme.blogspot.com/search/label/Awk</a></p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
