TAG=$(exif 2>/dev/null --ifd=EXIF -t 0x9003 ${REFERENCE} | grep Value)
if [[ ! "${TAG}" ]]; then
- # echo >&2 " Cannot find the \"Date and Time (original)\" exif tag in ${REFERENCE}"
- # echo >&2 " Looking for \"Date and Time\""
TAG=$(exif -t 0x0132 ${REFERENCE} | grep Value)
- # if [[ ${TAG} ]]; then
- # echo >&2 " Ok, found!"
- # fi
fi
if [[ ${TAG} ]]; then
touch -t $TIMESTAMP ${NAME}
ls -l ${NAME}
else
- echo "++ No exif tag in ${NAME}, can not set the date properly."
+ echo "++ No proper exif tag for ${NAME}, can not set the date properly."
fi
else