I used to rename file in Linux via a rename command:

rename 's/old_pattern/new_pattern/g' *glob

Is there something similar in Mac OS X (Snow Leopard)?

link|improve this question

The backticks are not showing up in your comment - you should probably add this as an answer or edit your question to include your solution. – Paul R Jun 15 '10 at 12:05
feedback

9 Answers

up vote 10 down vote accepted

Clumsy me:

for i in *.yourfiles; do mv "$i" "`echo $i | sed 's/old/new/g'`"; done 

And if you want to use it like I do often this way:

rename 's/old/new/' *.files

I recommend to use this litte script in ~/bin/rename:

#!/usr/bin/env zsh
SUBSEXPR=$1
shift
for i in $@; do mv $i `echo "$i" | sed $SUBSEXPR`; done
link|improve this answer
your script doesn't work for me "rename ACDC AC-DC ACDC*" result-> "ssed: can't read ACDC: No such file or directory" , I installed rename util from linux and now it works anwyay – holms Jan 30 '11 at 16:59
feedback

There are various version of rename. It looks like you are looking for the Perl-based one.

One version of this utility comes with the File::Rename Perl module. You can install it with something like sudo cpan -i File::Rename.

Or, you could go with the rename from Debian's perl package. It is just a single file to download. Put it where ever you like and chmod it so that it is executable.


An alternative is the zmv tool that comes with zsh. It does not have the same syntax, but it does come with your OS and it can easily take care of many of the common cases.

link|improve this answer
the perl rename is what this question shows as an example. – quack quixote Jun 15 '10 at 12:49
feedback

Use the power of ZSH wisely (type zsh in the terminal if you are one of those poor souls who don't use it by default):

autoload zmv
zmv '*.htm' '$1.html'

ZMV follows MMV syntax.

link|improve this answer
but does that also allow regex replacement? This seems to be just some kind of enhanced shell globbing. – math Jun 15 '10 at 15:37
2  
@brubelsabs: Yes, zmv can do regexp replacement. For files that match *user*.html, change the extension to .html and change all occurrences of rc to final: zmv '(*user*).htm' '${1//rc/final}.html' @ghoppe: I think the zmv example in your answer needs -w or parentheses around its wildcard. – Chris Johnsen Jun 15 '10 at 18:58
I don't get it. I do zmv '*.png' '$1left.png' and it complains that 10.png and 1.png both map to left.png... I tried # instead of dollar, too. – Yar Sep 22 '11 at 1:38
feedback

You can try to install MacPorts and install the renameutils package:

renameutils @0.10.0 (sysutils)

renameutils is a set of programs designed to make renaming files faster and less cumbersome

link|improve this answer
this package don't have the "rename" command. – juanpablo Jun 20 '10 at 21:38
i didn't say that it does. qmv looks like it does the job. – lajuette Jun 21 '10 at 5:43
feedback

On Macs I use Aristotle Pagaltzis's freely available rename, which like Debian's is Perl-based. You can get it here. Or visit here to read it first - always a good idea.

You need to place that somewhere in your $PATH and make it executable (chmod +x rename) and then you're good to go.

link|improve this answer
feedback

with brew

brew install rename 

:)

link|improve this answer
thanks jp, this was super easy – yitwail Jan 10 at 20:45
feedback

The best quick solution I've ever found has been using the built-in Automator. Check out this article for easy step by step help: http://www.tuaw.com/2008/11/11/mac-automation-rename-multiple-files-efficiently/

link|improve this answer
feedback

The following article explains how to install rename on Mac OS X: http://www.macosxhints.com/article.php?story=20050630022203488

link|improve this answer
Thanks anyway :) – math Jun 15 '10 at 11:22
when I try this tutorial have problem in the make step, say "no support x86-64" – juanpablo Jun 20 '10 at 21:00
feedback

If you are looking for a GUI, try Name Mangler. It has a "preview" feature that shows what will happen if you follow through with the renaming.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.