#!/bin/csh foreach f ($argv) set x=`exiftool -d '%c' -DateTimeOriginal $f` touch -d "`echo $x | sed 's/Shooting\ Date\/Time\ ://'`" $f end