Answers for "add extension to all fieles in bash"

0

bash add extension to all files

for f in * ; do 
  mv "$f" "$f.[EXTENSION_FILE]"
done
Posted by: Guest on September-15-2021

Code answers related to "add extension to all fieles in bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language