how to rename multiple files without overwriting linux code example
Example 1: rename all files starting with in linux
$ mmv '*abc*' '#1xyz#2'
Example 2: bash rename multiple files pattern
for f in *.jpg; do mv "$f" "$(echo "$f" | sed s/IMG/VACATION/)"; done