Setting EXIF dates with a loop

Magic EXIF recursive tagging! Have you ever had your files all nicely nested in directories, but needed to change their EXIF dates? Here’s what I used today to do it: # Structure like this: 1997/08/Picture.Whatever Maybe Some Spaces.jpg # Delete the EXIF tags (DONT DO THIS UNLESS YOU KNOW WHAT YOU’RE DOING!) find . -mindepth 3 -exec jhead -de “{}” \; # Make Fresh EXIF tags find . -mindepth 3 -exec jhead -mkexif “{}” \; # Set the dates according [...]