2 lines
68 B
Bash
2 lines
68 B
Bash
|
for file in *.HEIC; do heif-convert $file ${file/%.HEIC/.jpg}; done
|