<?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: Kosher Coding</title>
	<atom:link href="http://pthree.org/2006/07/27/kosher-coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://pthree.org/2006/07/27/kosher-coding/</link>
	<description>Linux.  GNU.  Freedom.</description>
	<lastBuildDate>Fri, 17 May 2013 20:46:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta2-24176</generator>
	<item>
		<title>By: Aaron</title>
		<link>http://pthree.org/2006/07/27/kosher-coding/#comment-1261</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Mon, 31 Jul 2006 13:59:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2006/07/27/kosher-coding/#comment-1261</guid>
		<description><![CDATA[Haha!  Good point.  Didn&#039;t think of that.  However, luckily, other scripts require the &#039;sample.fin&#039; filename, so in this case, I am good.]]></description>
		<content:encoded><![CDATA[<p>Haha!  Good point.  Didn&#8217;t think of that.  However, luckily, other scripts require the &#8216;sample.fin&#8217; filename, so in this case, I am good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HarleyPig</title>
		<link>http://pthree.org/2006/07/27/kosher-coding/#comment-1258</link>
		<dc:creator>HarleyPig</dc:creator>
		<pubDate>Mon, 31 Jul 2006 06:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2006/07/27/kosher-coding/#comment-1258</guid>
		<description><![CDATA[This still seems clumsy to me.  What if the filename needs to be changed?

#!/bin/bash

file=$1

if [ ! -e $file ]
then
  echo $file does not exist
  exit
fi

lower=`echo $file &#124; awk &#039;{ print tolower( $1 ) }&#039;`

if [ $file != $lower ]
then
  echo Moving $file to $lower
  mv $file $lower
fi

echo Done.]]></description>
		<content:encoded><![CDATA[<p>This still seems clumsy to me.  What if the filename needs to be changed?</p>
<p>#!/bin/bash</p>
<p>file=$1</p>
<p>if [ ! -e $file ]<br />
then<br />
  echo $file does not exist<br />
  exit<br />
fi</p>
<p>lower=`echo $file | awk &#8216;{ print tolower( $1 ) }&#8217;`</p>
<p>if [ $file != $lower ]<br />
then<br />
  echo Moving $file to $lower<br />
  mv $file $lower<br />
fi</p>
<p>echo Done.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
