Please add a parameter to skip "OK" messages when using "-validate", or preferably to only print files with a warning or error messages. I'm using:
exiftool -validate -warning -error -r. .
And trying to hunt down for the files with errors and warnings becomes difficult with high amount of files. I've also tried with -efile but it doesn't work with these commands.
What about this?:
exiftool -validate -warning -error -if "$validate ne 'OK'" -r. .
- Phil
Yes! Thank you, that works.