vote up 7 vote down star
4

in a directory, i have a bunch of *.html files. I'd like to rename them all to *.txt I use the bash shell. Is this easy enough to say how to do?

flag

5 Answers

vote up 6 vote down check

The following would do and does not require the system to have the rename program (although you would most often have this on a system):

for file in *.html; do
    mv "$file" "`basename $file .html`.txt"
done

EDIT: As pointed out in the comments, this does not work for filenames with spaces in them without proper quoting (now added above). When working purely on your own files that you know do not have spaces in the filenames this will work but whenever you write something that may be reused at a later time, do not skip proper quoting.

For an better solution (with only bash functionality, as opposed to external calls), see one of the other answers.

link|flag
3  
An alternative, without basename & with quotes: mv "${file}" "${file/%.html/.txt}" (see man bash, Parameter Expansion for details) – Rodrigo Queiro Aug 3 at 21:57
Only good if the files are all in the current directory, of course, because basename strips off the pathname part. Just a 'beware'! – Jonathan Leffler Aug 3 at 22:15
if there are many html files, use bash's internal string functions instead of basename. – ghostdog74 Aug 4 at 0:14
+1 for use of basename; although the question specifies it is for the bash shell, portability is good! – akent Aug 4 at 1:13
This solution is bad, not only because it is slow but because it does not work with filenames with spaces in them. You should ALWAYS do proper quotation in bash scripts. mv "$file" "$(basename "$file" .html)".txt would be much better. But still, mv "$files" "${files%.html}.txt" is much better. – Pozsár Balázs Aug 4 at 8:39
show 1 more comment
vote up 6 vote down

if using bash, no need for external commands like sed, basename, rename, expr...etc

for files in *.html
do
 mv "$files" "${files%.html}.txt"
done
link|flag
++ for idiomatic bash – guns Aug 4 at 0:21
See Pozar's comment for the reasons why. – Jim Aug 4 at 18:21
vote up 2 vote down
rename 's/\.html$/\.txt/' *.html

does exactly what you want.

link|flag
I don't think you can use a literal regex in bash like you suggest - which shell are you using? – Dave Rigby Aug 3 at 21:48
bash, on Ubuntu (Jaunty). – Dav Aug 3 at 21:51
i'm using a Mac terminal – unknown (yahoo) Aug 3 at 21:51
Here's the man page for the version of rename on Ubuntu: unixhelp.ed.ac.uk/CGI/man-cgi?rename – Dav Aug 3 at 21:54
(As you can see from the man page, it's tied into perl.) – Dav Aug 3 at 21:54
show 1 more comment
vote up 1 vote down

Unfortunately it's not trivial to do portably. You probably need a bit of expr magic.

for file in *.html; do echo mv -- "$file" "$(expr "$file" : '\(.*\)\.html').txt"; done

Remove the echo once you're happy it does what you want.

Edit: basename is probably a little more readable for this particular case, although expr is more flexible in general.

link|flag
vote up 1 vote down

You want to use rename :

rename .html .txt *.html

This does exactly what you want - it will change the extension from .html to .txt for all files matching *.html.

Note: Greg Hewgill correctly points out this is not a bash builtin; and is a seperate Linux command. If you just need something on Linux this should work fine; if you need something more cross-platform then take a look at one of the other answers.

link|flag
Although this is a good solution, the rename program is not related to bash and is also not available on all platforms. I've only seen it on Linux. – Greg Hewgill Aug 3 at 21:48
"$rename .html .txt *.html" results in... syntax error at (eval 1) line 1, near "." – Dav Aug 3 at 21:48
@Greg: Ah yes you're right - I'd always assumed it was a bash builtin. However I don't think I've ever come across a Linux system which didn't have it; so if you're only need this for Linux rename is probably the simplest method. – Dave Rigby Aug 3 at 21:51
yes, rename not available in Mac Terminal – unknown (yahoo) Aug 3 at 21:53

Your Answer

Get an OpenID
or

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