<?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>tail -f /dev/null &#187; do</title>
	<atom:link href="http://tfdn.radiofreeomaha.net/tag/do/feed/" rel="self" type="application/rss+xml" />
	<link>http://tfdn.radiofreeomaha.net</link>
	<description>Tips, notes, HOWTOs</description>
	<lastBuildDate>Fri, 20 Aug 2010 04:13:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Process A File Line By Line In A Script</title>
		<link>http://tfdn.radiofreeomaha.net/2009/01/process-a-file-line-by-line-in-a-script/</link>
		<comments>http://tfdn.radiofreeomaha.net/2009/01/process-a-file-line-by-line-in-a-script/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 18:54:32 +0000</pubDate>
		<dc:creator>Uncle Jubba</dc:creator>
				<category><![CDATA[CLI]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[do]]></category>
		<category><![CDATA[done]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[while]]></category>

		<guid isPermaLink="false">http://tfdn.radiofreeomaha.net/?p=59</guid>
		<description><![CDATA[There are multiple ways to skin this cat.  For now one of the simplest. #!/bin/sh while read LINE do ...DO SOME STUFF WITH THE ${LINE}... done &#60;somefile.txt Replace &#8220;somefile.txt&#8221; with the file you want to process. No related posts.
No related posts.]]></description>
			<content:encoded><![CDATA[<p>There are multiple ways to skin this cat.  For now one of the simplest.</p>
<pre class="brush: bash">#!/bin/sh

while read LINE
do
...DO SOME STUFF WITH THE ${LINE}...
done &lt;somefile.txt</pre>
<p>Replace &#8220;somefile.txt&#8221; with the file you want to process.</p>
<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://tfdn.radiofreeomaha.net/2009/01/process-a-file-line-by-line-in-a-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

