#!/bin/sh
# exif-date-profile.sh
# Written by Daniel Foote, Nov 2004.

# Version 1.1
# Fixes: improved globbing - old way didn't cut it.

# Shell script to display a list of the number of photos taken
# per day.

exif *.[Jj][Pp][Gg] | grep Date | grep origi | cut -d\| -f2 | cut -d\  -f1 | sort | uniq -c

