<?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: Add a File Extension to a Group of Files from the Command Line in OS X</title>
	<atom:link href="http://osxdaily.com/2012/11/22/add-file-extension-group-of-files-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://osxdaily.com/2012/11/22/add-file-extension-group-of-files-os-x/</link>
	<description>News, tips, software, reviews, and more for Mac OS X, iPhone, iPad</description>
	<lastBuildDate>Tue, 18 Jun 2013 21:04:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Chris</title>
		<link>http://osxdaily.com/2012/11/22/add-file-extension-group-of-files-os-x/#comment-456863</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Mon, 26 Nov 2012 10:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/?p=34547#comment-456863</guid>
		<description>&quot;... add a file extension to a group of files that don’t currently have one ...&quot;

This is perhaps misleading.  It adds the .txt extension to *every* file in the directory, including those that already have an extension.  eg x.rtf becomes x.rtf.txt.</description>
		<content:encoded><![CDATA[<p>&#8220;&#8230; add a file extension to a group of files that don’t currently have one &#8230;&#8221;</p>
<p>This is perhaps misleading.  It adds the .txt extension to *every* file in the directory, including those that already have an extension.  eg x.rtf becomes x.rtf.txt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinod</title>
		<link>http://osxdaily.com/2012/11/22/add-file-extension-group-of-files-os-x/#comment-455933</link>
		<dc:creator>Vinod</dc:creator>
		<pubDate>Sun, 25 Nov 2012 01:12:10 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/?p=34547#comment-455933</guid>
		<description>I wanted to add the one level parent folder name to all the files within the directory.

Any commands/ help....</description>
		<content:encoded><![CDATA[<p>I wanted to add the one level parent folder name to all the files within the directory.</p>
<p>Any commands/ help&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ciaran</title>
		<link>http://osxdaily.com/2012/11/22/add-file-extension-group-of-files-os-x/#comment-455124</link>
		<dc:creator>Ciaran</dc:creator>
		<pubDate>Fri, 23 Nov 2012 12:09:46 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/?p=34547#comment-455124</guid>
		<description>Great tip. Unfortunately exactly 24 hours too late for me. I ran into this problem yesterday and figured it would have taken more time to find the solution than to just do it by hand.</description>
		<content:encoded><![CDATA[<p>Great tip. Unfortunately exactly 24 hours too late for me. I ran into this problem yesterday and figured it would have taken more time to find the solution than to just do it by hand.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernard</title>
		<link>http://osxdaily.com/2012/11/22/add-file-extension-group-of-files-os-x/#comment-455046</link>
		<dc:creator>Bernard</dc:creator>
		<pubDate>Fri, 23 Nov 2012 08:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/?p=34547#comment-455046</guid>
		<description>You can also drag and drop a directory from the Finder into the terminal window to print out it’s path, rather than manually entering it.

its, not it&#039;s
*sigh*</description>
		<content:encoded><![CDATA[<p>You can also drag and drop a directory from the Finder into the terminal window to print out it’s path, rather than manually entering it.</p>
<p>its, not it&#8217;s<br />
*sigh*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: William Scott</title>
		<link>http://osxdaily.com/2012/11/22/add-file-extension-group-of-files-os-x/#comment-454841</link>
		<dc:creator>William Scott</dc:creator>
		<pubDate>Fri, 23 Nov 2012 00:05:08 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/?p=34547#comment-454841</guid>
		<description>zsh, which is essentially a more modern, augmented form of ksh, makes this (and all batch renaming) much more fun with zmv:


zsh-% ls
test0	test1	test2	test3	test4

zsh-% mmv * *.txt
zsh-% ls
test0.txt	test1.txt	test2.txt	test3.txt	test4.txt

zsh-% which mmv
mmv: aliased to noglob zmv -W</description>
		<content:encoded><![CDATA[<p>zsh, which is essentially a more modern, augmented form of ksh, makes this (and all batch renaming) much more fun with zmv:</p>
<p>zsh-% ls<br />
test0	test1	test2	test3	test4</p>
<p>zsh-% mmv * *.txt<br />
zsh-% ls<br />
test0.txt	test1.txt	test2.txt	test3.txt	test4.txt</p>
<p>zsh-% which mmv<br />
mmv: aliased to noglob zmv -W</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Poi Party</title>
		<link>http://osxdaily.com/2012/11/22/add-file-extension-group-of-files-os-x/#comment-454763</link>
		<dc:creator>Poi Party</dc:creator>
		<pubDate>Thu, 22 Nov 2012 21:16:01 +0000</pubDate>
		<guid isPermaLink="false">http://osxdaily.com/?p=34547#comment-454763</guid>
		<description>Helpful tip I can definitely see when I would need to use this. 

BTW not to be overly critical but I think Will is better at writing the command line tips....</description>
		<content:encoded><![CDATA[<p>Helpful tip I can definitely see when I would need to use this. </p>
<p>BTW not to be overly critical but I think Will is better at writing the command line tips&#8230;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/3 queries in 0.003 seconds using disk: basic
Object Caching 245/245 objects using disk: basic
Content Delivery Network via cdn.osxdaily.com

Served from: osxdaily.com @ 2013-06-18 18:00:06 -->