How Can We Help?

Rename multiple file

You are here:
< Back to Wiki

Rename multiple file

In terminal:

# This looks for a v001 in the files in the directory.
# Renames them via mv command from v001 to v123
for f in *v001*; do mv -i -- "$f" "${f//v001/v123}"; done

Leave a Reply

Table of Contents