Ansichten: QuotePaste - CodePaste - NoPaste
Codesnippet eingetragen am 1.12.2012 um 10:00
Von: Michael
Sprache: Bash
Beschreibung: Remove all metadata from pictures in the current directory AND it's subdirectories!
CodeSnippet:
  1. #!/bin/bash
  2. find . -type f | while read f
  3. do
  4. exiv2 -d a $f
  5. done
  6.