<?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: Bash Tip: Closing File Descriptors</title>
	<atom:link href="http://blog.apokalyptik.com/2007/10/24/bash-tip-closing-file-descriptors/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.apokalyptik.com/2007/10/24/bash-tip-closing-file-descriptors/</link>
	<description>The random things that spew forth from my brain...</description>
	<lastBuildDate>Fri, 05 Mar 2010 04:22:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ndronen</title>
		<link>http://blog.apokalyptik.com/2007/10/24/bash-tip-closing-file-descriptors/comment-page-1/#comment-7919</link>
		<dc:creator>ndronen</dc:creator>
		<pubDate>Wed, 15 Oct 2008 16:20:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/10/24/bash-tip-closing-file-descriptors/#comment-7919</guid>
		<description>Yeah, this is broken:

    exec 3&gt;&amp;- # close stdin
    exec 2&gt;&amp;- # close stdout
    exec 1&gt;&amp;- # close stderr

It should be

    exec 0&gt;&amp;- # close stdin
    exec 1&gt;&amp;- # close stdout
    exec 2&gt;&amp;- # close stderr</description>
		<content:encoded><![CDATA[<p>Yeah, this is broken:</p>
<p>    exec 3&gt;&amp;- # close stdin<br />
    exec 2&gt;&amp;- # close stdout<br />
    exec 1&gt;&amp;- # close stderr</p>
<p>It should be</p>
<p>    exec 0&gt;&amp;- # close stdin<br />
    exec 1&gt;&amp;- # close stdout<br />
    exec 2&gt;&amp;- # close stderr</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dandu</title>
		<link>http://blog.apokalyptik.com/2007/10/24/bash-tip-closing-file-descriptors/comment-page-1/#comment-7761</link>
		<dc:creator>dandu</dc:creator>
		<pubDate>Fri, 18 Apr 2008 18:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/10/24/bash-tip-closing-file-descriptors/#comment-7761</guid>
		<description>hey, stdin is on fd 0 not 3 :)</description>
		<content:encoded><![CDATA[<p>hey, stdin is on fd 0 not 3 <img src='http://blog.apokalyptik.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
