Answers for "rename all files in a folder command line"

0

rename all files in a folder command line

for file in Picture*.jpg
 do
    mv "$file" "vacation-$file"
 done
Posted by: Guest on June-17-2020

Code answers related to "rename all files in a folder command line"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language