<?xml version="1.0" encoding="iso-8859-1"?>
<rdf:RDF xmlns="http://purl.org/rss/1.0/"
         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
         xmlns:dc="http://purl.org/dc/elements/1.1/"
         xmlns:content="http://purl.org/rss/1.0/modules/content/">

<channel rdf:about="http://home.zyrianes.net/blog/Articles/151/">
<description>&lt;p&gt;Bash is a script shell for unix terminals.&lt;/p&gt;
&lt;div class="section" id="optimisations"&gt;
&lt;h1&gt;&lt;a name="optimisations"&gt;Optimisations&lt;/a&gt;&lt;/h1&gt;
&lt;ul class="simple"&gt;
&lt;li&gt;using ':' for 'true', because true is a software executable whereas ':' is an internal bash command. Very usefull for infinite loops.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;example:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
while true; do echo 'Hello'; sleep 1; done
&lt;/pre&gt;
&lt;p&gt;become:&lt;/p&gt;
&lt;pre class="literal-block"&gt;
while :; do echo 'Hello'; sleep 1; done
&lt;/pre&gt;
&lt;dl&gt;
&lt;dt&gt;Thanks:&lt;/dt&gt;
&lt;dd&gt;&lt;ul class="first last simple"&gt;
&lt;li&gt;Gwenn&lt;/li&gt;
&lt;/ul&gt;
&lt;/dd&gt;
&lt;/dl&gt;
&lt;/div&gt;
</description>
<link>http://home.zyrianes.net/blog/Articles/151/</link>
<title>Comments on article "Bash tips"</title>



<items>
<rdf:seq>

<rdf:li rdf:resource="http://home.zyrianes.net/blog/Comments/19/"/>

<rdf:li rdf:resource="http://home.zyrianes.net/blog/Comments/18/"/>

</rdf:seq>
</items>


</channel>


<item rdf:about="http://home.zyrianes.net/blog/Comments/19/">
<dc:date>2005-05-26T00:03:01.000003+01:00</dc:date>
<title>ludo on Bash tips</title>
<link>http://home.zyrianes.net/blog/Comments/19/</link>
<author>ludo</author>
<description>
oups yes ...
</description>
</item>

<item rdf:about="http://home.zyrianes.net/blog/Comments/18/">
<dc:date>2005-05-20T01:02:49.000004+01:00</dc:date>
<title>gwenn on Bash tips</title>
<link>http://home.zyrianes.net/blog/Comments/18/</link>
<author>gwenn</author>
<description>
s/for/while/
</description>
</item>


</rdf:RDF>
