Bulk Change of File Extensions in Directory
June 11, 2023 —
Gregg Szumowski
If you have a directory of files where you want to change all of the file extensions you may find this code snippet useful to rename them:
for i in *.tmp
do
mv ${i} ${i%.*}.txt
done