Michaels PasteCenter
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:
#!/bin/bash
find
.
-type
f
|
while
read
f
do
exiv2
-d
a
$f
done