Linux - Rename png to jpg file, Change file name from png to jpg
Rename png to jpg file
The below script will help you to convert all the specified png files to jpg files. This is a simple single line script, which helps you to rename jpg files to png files or as the files you wish.# for img in *.png; do convert "$img" "$img.jpg" ; done
The topic on Linux - Rename png to jpg file is posted by - Math
Hope you have enjoyed, Linux - Rename png to jpg fileThanks for your time