# list all exif data exiftool * exiftool *.jpg # get all time stamps exiftool *.jpg -time:all # get original date and time exiftool *.jpg -DateTimeOriginal # Table output - Output in tabular format exiftool *.jpg -DateTimeOriginal -T # with file name exiftool *.jpg -DateTimeOriginal -T -FileName # and of course you can search with grep or fzf exiftool *.jpg -DateTimeOriginal -T -FileName|fzf exiftool *.jpg -DateTimeOriginal -T -FileName|grep "^2026:01:03"