Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are multiple files in a directory that begin with prefix fgh, for example:

fghfilea
fghfileb
fghfilec

I want to rename all of them to begin with prefix jkl. Is there a single command to do that instead of renaming each file individually?

share|improve this question
check here:theunixshell.blogspot.com/2013/01/… – Vijay Jan 10 at 6:26

6 Answers

There are several ways, but using rename will probably be the easiest.

Using one version of rename:

rename 's/^fgh/jkl/' fgh*

Using another version of rename (same as Judy2K's answer):

rename fgh jkl fgh*

You should check your platform's man page to see which of the above applies.

share|improve this answer
1  
+1 Didn't even know about rename ... Now I can stop using a for loop with mv and sed ... Thanks! – balpha Jul 6 '09 at 11:27
2  
You are linking to a different rename then you are showing syntax for unixhelp.ed.ac.uk/CGI/man-cgi?rename is the other one – Hasturkun Jul 6 '09 at 11:39
2  
I never came across that before. Definitely non-standard. It's also on RHEL5 but not Solaris 10. – Stephen Darlington Jul 6 '09 at 11:54
3  
Not present on all *nix systems. Not on Max OS X for one, and no package in fink to get it. Haven't looked at MacPorts. – dmckee Jul 6 '09 at 16:07
2  
AFAICT, rename seems to be a Linux specific script or utility. If you care at all about portability, please continue using sed and loops or an inline Perl script. – D.Shawley Dec 25 '09 at 16:55
show 11 more comments

This is how sed and mv can be used together to do what Stephan202 is thinking?

for f in fgh*; do mv $f $(echo $f | sed 's/^fgh/jkl/g'); done
share|improve this answer
Very close. Note that you only want to match the first occurrence of fgh: 's/^fgh/jkl/g' (The caret makes all the difference). – Stephan202 Jul 6 '09 at 11:53
Just for the sake of precision... You mean "fgh at the beginning of the name", not "the first occurrence of fgh". /^fgh/ will match "fghi", but not "efgh". – Dave Sherohman Jul 6 '09 at 12:12
@Stephan, That was a typo on my part (fixed it). – nik Jul 6 '09 at 12:29
@Dave: correct. Since only filenames matching fgh* are processed, these notions coincide in this particular case. But indeed I could have been more precise. – Stephan202 Jul 6 '09 at 12:47
2  
If you do not have access to "rename" this works great. The code may require quotes if your file names include spaces. for f in fgh*; do mv "$f" "$(echo $f | sed 's/^fgh/jkl/g')"; done – Dave Nelson Jul 13 '11 at 14:24
show 1 more comment

rename might not be in every system. so if you don't have it, use the shell this example in bash shell

for f in fgh*; do mv "$f" "${f/fgh/xxx}";done
share|improve this answer
rename fgh jkl fgh*
share|improve this answer
1  
On my machine this produces the error 'Bareword "fgh" not allowed while "strict subs" in use at (eval 1) line 1.' – Stephan202 Jul 6 '09 at 11:32
@Stephan202, what is your machine? – nik Jul 6 '09 at 11:33
Ubuntu 8.10 (perl v5.10.0 / 2009-06-26) – Stephan202 Jul 6 '09 at 11:38

There are many ways to do it (not all of these will work on all unixy systems):

  • ls | cut -c4- | xargs -I§ mv fgh§ jkl§

    The § may be replaced by anything you find convenient. You could do this with find -exec too but that behaves subtly different on many systems, so I usually avoid that

  • for f in fgh*; do mv "$f" "${f/fgh/jkl}";done

    Crude but effective as they say

  • rename 's/^fgh/jkl/' fgh*

    Real pretty, but rename is not present on BSD, which is the most common unix system afaik.

  • rename fgh jkl fgh*

  • ls | perl -ne 'chomp; next unless -e; $o = $_; s/fgh/jkl/; next if -e; rename $o, $_';

    If you insist on using Perl, but there is no rename on your system, you can use this monster.

Some of those are a bit convoluted and the list is far from complete, but you will find what you want here for pretty much all unix systems.

share|improve this answer

To install the Perl rename script:

sudo cpan install File::Rename

There are two renames as mentioned in the comments in Stephan202's answer. Debian based distros have the Perl rename. Redhat/rpm distros have the C rename.
OS X doesn't have one installed by default (at least in 10.8), neither does Windows/Cygwin.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.