<?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>Claus Witt &#187; import script</title>
	<atom:link href="http://www.clauswitt.com/tag/import-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clauswitt.com</link>
	<description>software and web developer</description>
	<lastBuildDate>Thu, 24 Jun 2010 20:07:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Converting Filenames to Lowercase with Bash</title>
		<link>http://www.clauswitt.com/blog/2009/06/03/converting-filenames-to-lowercase-with-bash/</link>
		<comments>http://www.clauswitt.com/blog/2009/06/03/converting-filenames-to-lowercase-with-bash/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 07:24:36 +0000</pubDate>
		<dc:creator>Claus Witt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bash oneliner]]></category>
		<category><![CDATA[import script]]></category>
		<category><![CDATA[voicearchive]]></category>

		<guid isPermaLink="false">http://www.clauswitt.com/?p=246</guid>
		<description><![CDATA[Once again I have a bash-oneliner. For some reason it is all I blog about at the moment. I had an import script for importing demo files (in mp3 format) to a database used at Voicearchive. Only problem the import script depended on the files being named precisely according to a specific rule. But for [...]]]></description>
			<content:encoded><![CDATA[<p>Once again I have a bash-oneliner. For some reason it is all I blog about at the moment. </p>
<p>I had an import script for importing demo files (in mp3 format) to a database used at <a href="http://www.voicearchive.com/">Voicearchive</a>. Only problem the import script depended on the files being named precisely according to a specific rule. But for some reason some times it was named with uppercase letters, and sometimes with lowercase letters. I decided to rename all files to lowercase, and change the importscript accordingly. </p>
<pre name="code" class="bash">
find . -maxdepth 1 -type f -execdir rename 'y/A-Z/a-z/' '{}' \;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.clauswitt.com/blog/2009/06/03/converting-filenames-to-lowercase-with-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
