Ausführlicher Post zum Thema "Shell Suche in Unix-Systemen" und Herleitung, wie man zu einem Command wie diesem hier kommt:

find . -iname "*.jpg" -print0 | xargs -0 exiftool -q -m -p '$Directory/$Filename  $DateTimeOriginal' | grep '2011:07:09'

which gives me the file name and directory path to every photo taken on July 9, 2011.

Ich bewundere ja Leute, die sich all diese Command-Chains merken können.

http://leancrew.com/all-this/2016/04/photos-dates-and-xargs/