How to convert jpg files into png files with linux command? + Difficulty = Subfolders

Assuming you’re in folder a the following might work for you

find . -name "*.jpg" -exec mogrify -format png {} \;

You can use the find command to get all the jpg files in all the subfolders and pass your command as an argument to find

Leave a Comment