forked from varia/EXIF-image-commenter
manetta
5 years ago
3 changed files with 46 additions and 14 deletions
@ -0,0 +1,13 @@ |
|||||
|
#!/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 |
Loading…
Reference in new issue