for i in *.heic; do convert $i `basename $i .heic`.jpg ; done;
You will be left with a lot of picture files. Now all that is needed is a simple delete of all HEIC, after careful examination of the output.
for i in *.heic; do convert $i `basename $i .heic`.jpg ; done;
You will be left with a lot of picture files. Now all that is needed is a simple delete of all HEIC, after careful examination of the output.