Skip to content

Instantly share code, notes, and snippets.

@maggix
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save maggix/d39fde23ca4536af5823 to your computer and use it in GitHub Desktop.

Select an option

Save maggix/d39fde23ca4536af5823 to your computer and use it in GitHub Desktop.
Mac scripts
#!/bin/bash
for image in `find . -iname "*.jpg" -o -iname ".jpeg"`
do
convert "$image" -font Arial -pointsize 82 -fill red -annotate +100+100 %[exif:DateTimeOriginal] "$image"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment