Answers for "linux give all files an extension"

0

linux give all files an extension

for file in * ; do  mv "$file" "$file.md"; done
Posted by: Guest on August-14-2020
0

how to add extension to all files terminal

//terminal 
for f in * ; do 
  mv "$f" "$f.js"
done
Posted by: Guest on March-25-2020

Code answers related to "linux give all files an extension"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language