#!/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