I have a folder with many directories that have pictures and I need to remove the EXIF file.
I used this code and it seems to work but my file size grow for no reason
find /Users/justinbarrilleaux/Downloads/2015 -type f -name '*.JPG' -exec exiftool -all= {} \;
Any clues how to solve this issue?