1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 21:45: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

@@ -1,6 +1,6 @@
edc/bass edc/bass
oh-my-fish/theme-bobthefish fisherman/bobthefish
fisherman/getopts fisherman/getopts
oh-my-fish/plugin-grc fisherman/grc
fisherman/nvm fisherman/nvm
fisherman/shark fisherman/shark

View File

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