Skip to content

Instantly share code, notes, and snippets.

@ivanrosolen
Last active April 19, 2023 23:04
Show Gist options
  • Save ivanrosolen/795c2c4a8d6388283125 to your computer and use it in GitHub Desktop.
Save ivanrosolen/795c2c4a8d6388283125 to your computer and use it in GitHub Desktop.
XMP to CSV
#!/bin/bash
touch csv_ninja.csv
find -E . -regex '.*\.(psd|gif|png|jpeg)' | while read file; do
xmp=$(exiftool -xmp -b "${file}" | egrep 'xwnv:(.+)=(.+)"$' | cut -d : -f 2- | tr "\n" ";")
filename=$(basename "${file}")
echo "${file};${filename};${xmp%?}" >> csv_ninja.csv
echo "Extracting: ${file}"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment