<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GO IT WORLD &#124; IT TECH &#124; IT NEWS &#187; example</title>
	<atom:link href="http://www.goitworld.com/tag/example/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.goitworld.com</link>
	<description>goitworld.com</description>
	<lastBuildDate>Tue, 10 Jan 2012 10:03:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Sed example,part 1</title>
		<link>http://www.goitworld.com/sed-examplepart-1/</link>
		<comments>http://www.goitworld.com/sed-examplepart-1/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 05:48:00 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Shell Script]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://www.goitworld.com/sed-examplepart-1/</guid>
		<description><![CDATA[<p style="float: right;margin: 4px;">


</p><p><a name="h0">Pick an editor</a></p>
<p>In the UNIX world, we have a lot of options when it comes to editing files. Think of it &#8212; vi, emacs, and jed come to mind, as well as many others. We all have our favorite editor (along with our favorite keybindings) that we have come to know and love. With our trusty editor, we are ready to tackle any number of UNIX-related administration or programming tasks with ease. </p>
<p>While interactive editors are great, they do have limitations. Though their interactive nature can be a strength, it can also be a&#8230; <a href="http://www.goitworld.com/sed-examplepart-1/" class="read_more">Read the rest</a></p>]]></description>
		<wfw:commentRss>http://www.goitworld.com/sed-examplepart-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awk example, Part 3</title>
		<link>http://www.goitworld.com/awk-example-part-3/</link>
		<comments>http://www.goitworld.com/awk-example-part-3/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 10:58:59 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Shell Script]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://www.goitworld.com/awk-example-part-3/</guid>
		<description><![CDATA[<p><a name="h0">Formatting output</a></p>
<p>While awk&#8217;s print statement does do the job most of the time, sometimes more is needed. For those times, awk offers two good old friends called printf() and sprintf(). Yes, these functions, like so many other awk parts, are identical to their C counterparts. printf() will print a formatted string to stdout, while sprintf() returns a formatted string that can be assigned to a variable. If you&#8217;re not familiar with printf() and sprintf(), an introductory C text will quickly get you up to speed on these two essential printing functions. You can view the printf() man page by&#8230; <a href="http://www.goitworld.com/awk-example-part-3/" class="read_more">Read the rest</a></p>]]></description>
		<wfw:commentRss>http://www.goitworld.com/awk-example-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awk example, Part 2</title>
		<link>http://www.goitworld.com/awk-example-part-2/</link>
		<comments>http://www.goitworld.com/awk-example-part-2/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 11:45:53 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Shell Script]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://www.goitworld.com/awk-example-part-2/</guid>
		<description><![CDATA[<p><a name="h0">Multi-line records</a></p>
<p>Awk is an excellent tool for reading in and processing structured data, such as the system&#8217;s /etc/passwd file. /etc/passwd is the UNIX user database, and is a colon-delimited text file, containing a lot of important information, including all existing user accounts and user IDs, among other things. In my previous article, I showed you how awk could easily parse this file. All we had to do was to set the FS (field separator) variable to &#34;:&#34;.</p>
<p>By setting the FS variable correctly, awk can be configured to parse almost any kind of structured data, as long as there&#8230; <a href="http://www.goitworld.com/awk-example-part-2/" class="read_more">Read the rest</a></p>]]></description>
		<wfw:commentRss>http://www.goitworld.com/awk-example-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awk example, Part 1</title>
		<link>http://www.goitworld.com/awk-example-part-1/</link>
		<comments>http://www.goitworld.com/awk-example-part-1/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 06:30:58 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Shell Script]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://www.goitworld.com/awk-example-part-1/</guid>
		<description><![CDATA[<p><a name="h0">In defense of awk</a></p>
<p>In this series of articles, I&#8217;m going to turn you into a proficient awk coder. I&#8217;ll admit, awk doesn&#8217;t have a very pretty or particularly &#34;hip&#34; name, and the GNU version of awk, called gawk, sounds downright weird. Those unfamiliar with the language may hear &#34;awk&#34; and think of a mess of code so backwards and antiquated that it&#8217;s capable of driving even the most knowledgeable UNIX guru to the brink of insanity (causing him to repeatedly yelp &#34;kill -9!&#34; as he runs for coffee machine). </p>
<p>Sure, awk doesn&#8217;t have a great name. But it&#8230; <a href="http://www.goitworld.com/awk-example-part-1/" class="read_more">Read the rest</a></p>]]></description>
		<wfw:commentRss>http://www.goitworld.com/awk-example-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

