How to mass prepend text to file names?

45

24

Lets say I have a directory full of .md files all named various things. Lets say I wanted to prepend "text" to the front of each file name. So for example: file a.md, b.md, and c.md would become test - a.md, test - b.md, and test - c.md.

How would I accomplish this via command line?

Jesse Atkinson

Posted 2012-10-11T16:39:13.080

Reputation: 717

Answers

62

One-liner that can be easily typed straight from the terminal:

for f in *.md; do mv "$f" "test - $f"; done

Or rewritten on separate lines instead using semicolons:

for f in *.md
do
    mv "$f" "test - $f"
done

Exposition

Syntax of for (in sh):

for NAME [in WORDS ... ] ; do COMMANDS; done

Here, our NAME is f and our WORDS are all files in the current directory matching *.md. So the variable $f will be be substituted with each file matching *.md.

So for a.md:

mv "$f" "test - $f"

becomes

mv "a.md" "test - a.md"

The quotes are important because the each filename $f might contain spaces. Otherwise mv would think each word was a separate file. For example, if there were no quotes, and there's a file called Foo Bar.md, it would translate as:

mv Foo Bar.md test - Foo Bar.md

which would not work as intented. But by wrapping $f in quotes, it makes sense:

mv "Foo Bar.md" "test - Foo Bar.md"

Noting the syntax of for, you could also rename a subset of all the *.md files by naming each explicitly:

for f in a.md b.md d.md; do mv "$f" "Test - $f"; done

Or using shell expansion:

for f in {a,b,d}.md; do mv "$f" "Test - $f"; done

QuasarDonkey

Posted 2012-10-11T16:39:13.080

Reputation: 958

This is exactly what I needed to see. Thanks! – Ryan – 2016-05-19T16:10:15.127

11

If you have prename...

prename 's/^/test - /' *.md

Using ordinary shell commands:

for file in *.md; do
    mv "$file" "test - $file"
done

user1686

Posted 2012-10-11T16:39:13.080

Reputation: 283 655

How do I get prename ? – Gaʀʀʏ – 2016-11-17T02:49:29.697

Seems to be preinstalled for me on Ubuntu 16.04 LTS.

Have you tried your package manager (ie., sudo apt-get install)? – Orion751 – 2018-05-26T02:19:55.883

5

mmv1,2 is also a very nice tool for such a task, applied to the current job, it would be

mmv '*.md' 'test - #1.md'

Of course, if you only want to add "test - " to a.md, b.md and c.md, but not a1.md, something like

mmv '?.md' 'test - #1.md'

would be more appropriate.

I can really suggest it, especially if you have many such problems.

If you are additionally looking for a graphical interface, try gprename.

Claudius

Posted 2012-10-11T16:39:13.080

Reputation: 6 330

5

Instead of using a for loop, which will fail on spaces unless you redefine the IFS variable, I would recommend using a while loop combined with find. The following will work when run from the same directory as the files

find . -maxdepth 1 -type f -name '*.md' | while read -r file; do
    file=$(basename $file)
    mv "$file" "test - $file"
done

the "basename" line is in there so that find will print the file name only - without path components which would make the rename operation break.

Fred Clausen

Posted 2012-10-11T16:39:13.080

Reputation: 183

2

I know it's really late, but if anyone else is looking for something like this, then this worked for me:

rename '' 'name -' *.md

nullptr

Posted 2012-10-11T16:39:13.080

Reputation: 121

1simple and straight-forward – user13743 – 2019-05-15T02:42:23.303

0

In bash, adding "Prepend text - " to all files in folder:

for i in *; do mv "$i" "$(echo $i | sed 's/^/Prepend\ text\ \-\ /')"; done;

Osiris

Posted 2012-10-11T16:39:13.080

Reputation: 1

This is a super-long way of writing for i in *; do mv "$i$" "Prepend text - $i"; done – David Richerby – 2016-05-04T07:20:45.030

0

If you have zsh available you could use zmv:

autoload zmv
zmv -w '*' 'test - $1'

You can test the command with:

zmv -wn '*' 'test - $1'
  • -n means dry-run, i.e. only show what will happen.
  • -w implicitly puts parenthesis around wildcards, makes backreferences work.

Thor

Posted 2012-10-11T16:39:13.080

Reputation: 5 178