To drop exif data from a photo, use the following command:
exiftool -EXIF= path/to/file
-EXIF=
tells exiftool to copy only
the listed EXIF metadata to a new copy of the
picture, but since our list is empty this has the
effect of deleting all of the EXIF metadata from the
picture. A backup image with the original metadata
will be found in the same path with
_original
appended to their
filename.
You can confirm that the EXIF metadata is deleted
by running exiftool path/to/file
.