<?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: PrefixSuffix - Gui application that renames batches of files in Ubuntu</title>
	<atom:link href="http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html</link>
	<description>Ubuntu Linux Tutorials,Howtos,Tips &#38; News &#124; Oneiric,Natty,Maverick</description>
	<lastBuildDate>Mon, 06 Feb 2012 15:40:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Mossby</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-28260</link>
		<dc:creator>Mossby</dc:creator>
		<pubDate>Sat, 24 Apr 2010 04:08:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-28260</guid>
		<description>KRename is great. But if you&#039;re on Gnome, you&#039;re gonna have to install 267MB of KDE stuff to run it. (Unless you&#039;ve previously installed a KDE program) Not too big a deal these days, but a fair warning.</description>
		<content:encoded><![CDATA[<p>KRename is great. But if you&#8217;re on Gnome, you&#8217;re gonna have to install 267MB of KDE stuff to run it. (Unless you&#8217;ve previously installed a KDE program) Not too big a deal these days, but a fair warning.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandeep das</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-9844</link>
		<dc:creator>sandeep das</dc:creator>
		<pubDate>Thu, 11 Jun 2009 06:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-9844</guid>
		<description>metmorphose its avery improved and very advance thanprefixsuffix</description>
		<content:encoded><![CDATA[<p>metmorphose its avery improved and very advance thanprefixsuffix</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Binny V A</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6614</link>
		<dc:creator>Binny V A</dc:creator>
		<pubDate>Sun, 15 Mar 2009 18:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6614</guid>
		<description>I would recommend using KRename for doing this. Yes, its a KDE app - but it has a lot more options when compared to this.</description>
		<content:encoded><![CDATA[<p>I would recommend using KRename for doing this. Yes, its a KDE app - but it has a lot more options when compared to this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: papukai</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6517</link>
		<dc:creator>papukai</dc:creator>
		<pubDate>Wed, 11 Mar 2009 14:29:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6517</guid>
		<description>Metamorphose is much more advanced than prefixsuffix.</description>
		<content:encoded><![CDATA[<p>Metamorphose is much more advanced than prefixsuffix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: StickHutzee</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6440</link>
		<dc:creator>StickHutzee</dc:creator>
		<pubDate>Sun, 08 Mar 2009 19:02:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6440</guid>
		<description>With bash:

for a in *oldsuffix; do mv $a ${a%oldsuffix}newsuffix; done

and you can use &quot;#&quot; (instead of &quot;%&quot;) for prefix substitution.

With zsh it&#039;s more readable: mv $a ${a:s/oldsuffix/newsuffix}

But what beats them all is Emacs dired write mode (wdired-change-to-wdired-mode)...  (^__^)</description>
		<content:encoded><![CDATA[<p>With bash:</p>
<p>for a in *oldsuffix; do mv $a ${a%oldsuffix}newsuffix; done</p>
<p>and you can use &#8220;#&#8221; (instead of &#8220;%&#8221;) for prefix substitution.</p>
<p>With zsh it&#8217;s more readable: mv $a ${a:s/oldsuffix/newsuffix}</p>
<p>But what beats them all is Emacs dired write mode (wdired-change-to-wdired-mode)&#8230;  (^__^)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rakesh</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6364</link>
		<dc:creator>rakesh</dc:creator>
		<pubDate>Thu, 05 Mar 2009 04:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6364</guid>
		<description>I am impressed by the use of bash by thomas, the bash constructs are very powerful and simple, but its made useless by using it less, 

Though i appreiate the effort for making a GUI application, i just needed to highlight the usage of bash, The comment have no offence  towards the GUI application</description>
		<content:encoded><![CDATA[<p>I am impressed by the use of bash by thomas, the bash constructs are very powerful and simple, but its made useless by using it less, </p>
<p>Though i appreiate the effort for making a GUI application, i just needed to highlight the usage of bash, The comment have no offence  towards the GUI application</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: woohoo</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6354</link>
		<dc:creator>woohoo</dc:creator>
		<pubDate>Wed, 04 Mar 2009 19:03:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6354</guid>
		<description>I also use KRename, but on Gnome, it works very well.</description>
		<content:encoded><![CDATA[<p>I also use KRename, but on Gnome, it works very well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: N3storm</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6296</link>
		<dc:creator>N3storm</dc:creator>
		<pubDate>Sun, 01 Mar 2009 22:49:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6296</guid>
		<description>Nice app, more of this easy-to-use needed for common tasks in every day computing. Thanks for pointing it out.</description>
		<content:encoded><![CDATA[<p>Nice app, more of this easy-to-use needed for common tasks in every day computing. Thanks for pointing it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: crjackson</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6271</link>
		<dc:creator>crjackson</dc:creator>
		<pubDate>Sat, 28 Feb 2009 21:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6271</guid>
		<description>I&#039;m trying to figure out how to wildcard rename the prefix. I want to rename everything in the directory with the person&#039;s (they&#039;re pictures) first name possibly followed by a number.

Is there a wildcard that will work with this application?</description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to figure out how to wildcard rename the prefix. I want to rename everything in the directory with the person&#8217;s (they&#8217;re pictures) first name possibly followed by a number.</p>
<p>Is there a wildcard that will work with this application?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6248</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Sat, 28 Feb 2009 06:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6248</guid>
		<description>Don&#039;t forget the rename command. Perl-based, regexp support, very flexible and powerful.

From the mangape:

 For example, to rename all files matching &quot;*.bak&quot; to strip the extension, you might say

  rename &#039;s/\.bak$//&#039; *.bak

 To translate uppercase names to lower, you&#039;d use

  rename &#039;y/A-Z/a-z/&#039; *</description>
		<content:encoded><![CDATA[<p>Don&#8217;t forget the rename command. Perl-based, regexp support, very flexible and powerful.</p>
<p>From the mangape:</p>
<p> For example, to rename all files matching &#8220;*.bak&#8221; to strip the extension, you might say</p>
<p>  rename &#8216;s/\.bak$//&#8217; *.bak</p>
<p> To translate uppercase names to lower, you&#8217;d use</p>
<p>  rename &#8216;y/A-Z/a-z/&#8217; *</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stam</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6241</link>
		<dc:creator>stam</dc:creator>
		<pubDate>Fri, 27 Feb 2009 18:10:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6241</guid>
		<description>I use GPRename 2.5 [A complete batch renamer for files and directories.] which is quite good actually...</description>
		<content:encoded><![CDATA[<p>I use GPRename 2.5 [A complete batch renamer for files and directories.] which is quite good actually&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sciamano</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6240</link>
		<dc:creator>Sciamano</dc:creator>
		<pubDate>Fri, 27 Feb 2009 17:20:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6240</guid>
		<description>For the KDE environment, there is KRename which is a much more powerful renamer.</description>
		<content:encoded><![CDATA[<p>For the KDE environment, there is KRename which is a much more powerful renamer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.ubuntugeek.com/prefixsuffix-gui-application-that-renames-batches-of-files-in-ubuntu.html/comment-page-1#comment-6236</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 27 Feb 2009 16:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/?p=957#comment-6236</guid>
		<description>This is a scenario where a bash script is much more capable.  Maybe you should post some useful batch renaming scripts...</description>
		<content:encoded><![CDATA[<p>This is a scenario where a bash script is much more capable.  Maybe you should post some useful batch renaming scripts&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

