<?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: Batch renaming files in shell</title>
	<atom:link href="http://www.maclovin.de/2009/06/batch-renaming-files-in-shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maclovin.de/2009/06/batch-renaming-files-in-shell/</link>
	<description>An Apple a day keeps the Windows away</description>
	<lastBuildDate>Thu, 22 Jul 2010 18:05:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: dennis</title>
		<link>http://www.maclovin.de/2009/06/batch-renaming-files-in-shell/comment-page-1/#comment-505</link>
		<dc:creator>dennis</dc:creator>
		<pubDate>Sat, 22 Aug 2009 15:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.maclovin.de/?p=300#comment-505</guid>
		<description>Thanks for this suggestion, PatrickMc. 
I actually never heard of biterscripting. It looks very flexible, but also very verbose. Being a Unix-guy, I&#039;d rather stick with Cygwin. Well, to be serious I would try to avoid Windows in the first place and then use Cygwin ;-)</description>
		<content:encoded><![CDATA[<p>Thanks for this suggestion, PatrickMc.<br />
I actually never heard of biterscripting. It looks very flexible, but also very verbose. Being a Unix-guy, I&#8217;d rather stick with Cygwin. Well, to be serious I would try to avoid Windows in the first place and then use Cygwin <img src='http://www.maclovin.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PatrickMc</title>
		<link>http://www.maclovin.de/2009/06/batch-renaming-files-in-shell/comment-page-1/#comment-504</link>
		<dc:creator>PatrickMc</dc:creator>
		<pubDate>Fri, 21 Aug 2009 13:42:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.maclovin.de/?p=300#comment-504</guid>
		<description>Nice article. In windows, I use biterscripting ( http://www.biterscripting.com ) for renaming. It is a general purpose scripting language, rather easy to learn. 

For example, to change the extension from mp4 to m4v, the following code snippet can be used.

var str list ; lf -n &quot;*.mp4&quot; &gt; $list
while ($list  &quot;&quot;)
do
    var str file, newname ; lex &quot;1&quot; $list &gt; $file ; sal -c -p &quot;^.mp4^&quot; &quot;.mv4&quot; $file &gt; $newname
    system move $file $newname
done


Patrick</description>
		<content:encoded><![CDATA[<p>Nice article. In windows, I use biterscripting ( <a href="http://www.biterscripting.com" rel="nofollow">http://www.biterscripting.com</a> ) for renaming. It is a general purpose scripting language, rather easy to learn. </p>
<p>For example, to change the extension from mp4 to m4v, the following code snippet can be used.</p>
<p>var str list ; lf -n &#8220;*.mp4&#8243; &gt; $list<br />
while ($list  &#8220;&#8221;)<br />
do<br />
    var str file, newname ; lex &#8220;1&#8243; $list &gt; $file ; sal -c -p &#8220;^.mp4^&#8221; &#8220;.mv4&#8243; $file &gt; $newname<br />
    system move $file $newname<br />
done</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
</channel>
</rss>
