http://qs321.pair.com?node_id=787532


in reply to Change Image File Timestamp to Match EXIF Data

I used few days ago something like ...

# arw: Sony raw file suffix. for f in *.arw *.jpg do exiftool -S -d "%Y%m%d%H%M.%S" -CreateDate "${f}" \ | awk '{ print $2 }' \ | xargs -I % touch -m -t % "${f}" done