trying something simple under Windows Command line (not batch)
exiftool -r -ext JPG -if '$MakerNotes:BracketMode eq "AEB"' -MakerNotes:BracketMode -AEBBracketValue .
I get a
File not found eq
File not found AEB'
and nothing.
i just now reversed the quotes and use
exiftool -r -ext JPG -if "$MakerNotes:BracketMode eq 'AEB'" -MakerNotes:BracketMode -AEBBracketValue .
and it seems to work...
odd?
The Windows cmd shell accepts double quotes ("), not single quotes ('). This is a constant source of confusion.
- Phil