Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Renaming files with Bash, removing prefix and suffix

I want to rename a bunch of files using bash, transforming this file pattern:

prefix - name - suffix.txt

Into this one:

name.txt

For that I wrote the following script:

find . -name "*.txt" | while read f
do
  mv "${f}" "${f/prefix - /}"
done

find . -name "*.txt" | while read f
do
  mv "${f}" "${f/ - suffix/}"
done

It works, but I'd like to perform the renaming using a single loop. Is it possible?

like image 436
Óscar López Avatar asked Aug 20 '12 00:08

Óscar López


2 Answers

Another approach, for fun, using regular expressions:

regex='prefix - (.*) - suffix.txt'
for f in *.txt; do
    [[ $f =~ $regex ]] && mv "$f" "${BASH_REMATCH[1]}.txt"
done

Actually, using the simple pattern '*.txt' here has two problems:

  1. It's too broad; you may need to apply the regex to a lot of non-matching files.
  2. If there are a lot of files in the current directory, the command line could overflow.

Using find complicates the procedure, but is more correct:

find . -maxdepth 1 -regex 'prefix - .* - suffix.txt' -print0 | \
  while read -d '' -r; do
   [[ $REPLY =~ $regex ]] && mv "$REPLY" "${BASH_REMATCH[1]}.txt"
  done
like image 99
chepner Avatar answered Sep 28 '22 08:09

chepner


If you have access to GNU sed, you could use some regex to perform something like:

for i in *.txt; do mv "$i" "$(echo $i | sed -r 's/([^-]*)\s-\s(.*)\s-\s([^-]*)\.txt/\2.txt/')"; done
like image 39
Steve Avatar answered Sep 28 '22 07:09

Steve