1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 22:55:10 +01:00

20160807: support for .JPG

This commit is contained in:
2016-10-16 19:16:25 +02:00
parent f777aad451
commit 8a62f45cc8
2 changed files with 6 additions and 2 deletions

View File

@@ -7,6 +7,10 @@ if [ $(find . -name '*.jpg' | wc -l) -gt 0 ]; then
echo "jpg found, fixing"
exiv2 -T ./*.jpg
fi
if [ $(find . -name '*.JPG' | wc -l) -gt 0 ]; then
echo "JPG found, fixing"
exiv2 -T ./*.JPG
fi
exit
# old, slower method: