<?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 &#8211; Check if Directory Writable</title>
	<atom:link href="http://linux.subogero.com/577/bash-check-if-directory-writable/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux.subogero.com/577/bash-check-if-directory-writable/</link>
	<description>#!/bin/bash</description>
	<lastBuildDate>Sun, 28 Dec 2014 22:29:39 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: subogero</title>
		<link>http://linux.subogero.com/577/bash-check-if-directory-writable/comment-page-1/#comment-117</link>
		<dc:creator>subogero</dc:creator>
		<pubDate>Sat, 06 Mar 2010 19:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://linux.subogero.com/?p=577#comment-117</guid>
		<description>&lt;a href=&quot;#comment-114&quot; rel=&quot;nofollow&quot;&gt;@gergo &lt;/a&gt; 
One has to admit, even a toddler can read Python. 
And it beats the Bourne Again Shell even in Jack Rabbit Slim&#039;s world famous Number-Of-Lines contest. By eleven to one, Ladies and Gentlemen. 

Still, I just can&#039;t suppress an odd sympathy towards old bash. I must be religiously prejudiced.</description>
		<content:encoded><![CDATA[<p><a href="#comment-114" rel="nofollow">@gergo </a><br />
One has to admit, even a toddler can read Python.<br />
And it beats the Bourne Again Shell even in Jack Rabbit Slim&#8217;s world famous Number-Of-Lines contest. By eleven to one, Ladies and Gentlemen. </p>
<p>Still, I just can&#8217;t suppress an odd sympathy towards old bash. I must be religiously prejudiced.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gergo</title>
		<link>http://linux.subogero.com/577/bash-check-if-directory-writable/comment-page-1/#comment-114</link>
		<dc:creator>gergo</dc:creator>
		<pubDate>Sat, 06 Mar 2010 08:08:26 +0000</pubDate>
		<guid isPermaLink="false">http://linux.subogero.com/?p=577#comment-114</guid>
		<description>&lt;pre&gt;
#!/usr/bin/python
from sys import argv
from tempfile import TemporaryFile
try:
  t = TemporaryFile(dir=argv[1])
  t.write(&#039;foo&#039;)
  t.close()
except OSError:
  print &#039;Nearp!&#039;
else:
  print &#039;Yearp!&#039;
&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<pre>
#!/usr/bin/python
from sys import argv
from tempfile import TemporaryFile
try:
  t = TemporaryFile(dir=argv[1])
  t.write('foo')
  t.close()
except OSError:
  print 'Nearp!'
else:
  print 'Yearp!'
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>
