-
-
Save narate/f679c2995ae614b2003c to your computer and use it in GitHub Desktop.
Show EXIF of image using $ identify -format %[exif:*] /path/to/image/file
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
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Usage : $ exif /path/to/file" | |
exit | |
fi | |
echo "EXIF of `basename $1`" | |
identify -format %[exif:*] $1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Or you can use
$ ./exif 'https://example.com/pub/hello.jpg'