Kod: Markera allt
exiv2 -M"set Exif.Photo.UserComment charset=Ascii PISSENISSE" DSC_0010.JPG
Kod: Markera allt
#!/bin/bash
IFS='
'
for file in *.JPG
do
if [ -f "$file" ]; then
base=${file%.*}
ext=${file##*.}
newname=${base}
exiv2 -M"set Exif.Photo.UserComment charset=Ascii PISSENISSE" $file $newname.jpg
fi
done