Answers for "bash add extension to all files"

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 "bash add extension to all files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language