Answers for "how to rename multiple files in linux and make them unique"

0

linux rename multiple files

$ for i in $( ls ); do mv $i $i.old; done
Posted by: Guest on July-15-2021
0

rename multiple files in linux

# Change all jpeg to jpg
for f in *.jpeg; do
    mv -- "$f" "${f%.jpeg}.jpg"
done
Posted by: Guest on January-06-2022

Code answers related to "how to rename multiple files in linux and make them unique"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language