#!/bin/sh
year=`date +%Y`
for file in `ls *.jpg`
do
/usr/local/exif/exiftool -copyright="(c) $year Thomas Good / NLN" $file
done
rm *original
