Last active
January 10, 2022 20:48
-
-
Save feklee/4c43ca5113b29cdd7cdae583c19b90b8 to your computer and use it in GitHub Desktop.
Finds images that contain DocURLs in their EXIF data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Finds images that contain DocURLs in their EXIF data, because I | |
# remember that I once had the idea to put them there. Hopefully | |
# there are none. | |
# Felix E. Klee <[email protected]> | |
find -regex ".*\.jpe?g" | while read a; do | |
r=$(exiftool "$a" | grep -i docurl) && echo "$a: '$r'" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment