Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Batch renaming using shell script

I have a folder with files named as

input (1).txt
input (2).txt
input (3).txt
...
input (207).txt

How do I rename them to

input_1.in
input_2.in
input_3.in
...
input_207.in

I am trying this

for f in *.txt ; do mv $f `echo $f | sed -e 's/input\ (\(\d*\))\.txt/input_\1.in/'` ; done

But it gives me

mv: target `(100).txt' is not a directory
mv: target `(101).txt' is not a directory
mv: target `(102).txt' is not a directory
...

Where did I go wrong?


I have put in the quotes now, but I get this now

mv: `input (90).txt' and `input (90).txt' are the same file

It is somehow trying to rename the file to the same name. How is that happening?

like image 671
Lazer Avatar asked Sep 20 '26 12:09

Lazer


2 Answers

That is because bash for split the element with space ' ' so you are commanding it to move 'input' to '(1)'.

The way to solve this is to tell bash to split by new line using IFS variable.

Like this:

IFS=$'\n'

Then do your command.

However, I suggest you to use find to do this instead using -exec command.

For example:

find *.txt -exec mv "{}" `echo "{}" | sed -e 's/input\ (\([0-9]*\))\.txt/input_\1.in/'` \;

NOTE: I write this from memory and I did test this so let try and adjust it.

Hope this helps.

like image 83
NawaMan Avatar answered Sep 22 '26 21:09

NawaMan


You're forgetting to quote your arguments.

... mv "$f" "$(echo "$f" | ... )" ; done
like image 34
Ignacio Vazquez-Abrams Avatar answered Sep 22 '26 21:09

Ignacio Vazquez-Abrams



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!