Answers for "how to rename multiple files at once on linux"

0

linux rename multiple files

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

Code answers related to "how to rename multiple files at once on linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language