Remove all metadata from files (exiftool)
find . -type f -iname '*' -exec exiftool -overwrite_original -all= {} \;
Finds all files in the current directory and subdirectories, and removes all metadata (such as EXIF, IPTC, XMP) from each file using exiftool, overwriting the originals.