tableflip / how-to

:question: How to TABLEFLIP and other stories
4 stars 0 forks source link

Check a jpeg is progressive #12

Open olizilla opened 8 years ago

olizilla commented 8 years ago

with exiftool installed, you can check the encoding of all .jpg files in a dir:

find . -name '*.jpg' -exec echo {} \; -exec sh -c 'exiftool {} | grep Encoding' \;