Can I ask a related question?
I am renaming a bunch of files in the same directory and noting the rename in the ImageHistory.
exiftool generates the new name from the DateTimeOriginal tag. The call to exiftool looks like this:
for f in *.NEF
do
exiftool -o . -v \
-ImageHistory="copy of "$f"" \
-d %Y-%m-%d_%H-%M-%S%%-c.%%e "-filename<datetimeoriginal" \
"$f"
done
My question - is there a way to tell exiftool to print _only_ the name of the _generated_ file?
I can parse it out of the -v output but that's pretty ugly.
I've tried various experiments with -s -p and -w, with no luck.