Created
July 29, 2019 01:31
-
-
Save shymega/bb5110e7ca4f06ed36cdff6bf80a8e98 to your computer and use it in GitHub Desktop.
Photos - collection of one-liners..
This file contains hidden or 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
#!/usr/bin/env sh | |
# Iterates over JPG files, grabs lens focal length in metadata, and aappends it to a file. | |
find ./*.jpg -print -exec exiftool -T -lens -focallength "{}" \; >> lens_focal-lengths.txt; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment