Skip to content

Instantly share code, notes, and snippets.

@rxw1
Last active August 15, 2020 17:18
Show Gist options
  • Save rxw1/d9e60f615a65dd2237f510b03586f665 to your computer and use it in GitHub Desktop.
Save rxw1/d9e60f615a65dd2237f510b03586f665 to your computer and use it in GitHub Desktop.
Get the standard EXIF tags
curl -s https://www.exiv2.org/tags.html | \
pup 'table tbody tr td text{}' | \
paste -d'\t' - - - - - - | \
awk -F'\t' -v c=$COLUMNS '
{
split($4, a, ".");
$6=substr($6,1,c-6-6-8-28-10-5);
printf("%6s % 6d % 8s % -28s % -10s %s\n", $1, $2, $3, a[3], $5, $NF);
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment