Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to add extension to all files terminal

//terminal 
for f in * ; do 
  mv "$f" "$f.js"
done
 
PREVIOUS NEXT
Tagged: #add #extension #files #terminal
ADD COMMENT
Topic
Name
5+8 =