You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
461 B
13 lines
461 B
#!/bin/bash
|
|
|
|
# A command line photograph EXIF comment reader was built to inspect the annotations of photo files inside the files themselves.
|
|
# The tool also comes with a writing script to add the annotations to the files. See addcomments.sh.
|
|
# https://git.vvvvvvaria.org/varia/EXIF-image-commenter
|
|
|
|
# How to use it?
|
|
# $ sh readcomments.sh [foldername]
|
|
|
|
for f in $(ls $1); do
|
|
CURRENT=$(exiftool -S -Comment $1/$f | sed 's/[^ ]* //')
|
|
echo "$f $CURRENT"
|
|
done
|
|
|