Jump to content

Command Crate ¿about?

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.

file management [kb:76]