Strip Pictures with ImageMagick Wed Nov 06 2013 From here. 1234# The following command will remove all the EXIF information # of the jpg files under the current directory and set the # quality to 85% which will decrease the file size.find . -iname "*.JPG" -exec convert -strip -quality 85 {} {} \;