How to change all file extensions in a folder
To make sure that you do not destroy your real files make a copy to temporary folder. # mkdir /tmp# cd tmpNow, I’m in the folder /tmp. Currently, this is a empty working directory. We make 500 new files in the extension .dot as the following: # for x in {1..500}; do touch “file$x.dot”; done […]
How to change all file extensions in a folder Read More »