Strip Exif

convert recompresses so use exiftool instead:

exiftool -all=  $file

$[Get Code]1

Convert Canon Raw Images

Batch convert CR2 images using 4 threads

find . -iname '*.CR2' -print0 | xargs -0 -n 1 -P 4 -I %% convert %% %%.jpg

$[Get Code]3