blob: 629e4c25551cd0e29f75510f17b795cbf9f8db85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
if [ -z "$1" ]; then
echo "Set EXIF timestamp from file modification time"
echo "usage: $0 file1.jpg file2.jpg ..."
exit 0
fi
while [ ! -z "$1" ]; do
file="$1"
if [ `basename "${file}" ".jpg"`".jpg" = "${file}" ]; then
echo "setting EXIF timestamp for $file"
# Write file modification time to EXIF timestamp
exiftool "-DateTimeOriginal<FileModifyDate" "${file}"
fi
shift
done
|