forked from Public/pics
21 lines
1.1 KiB
Bash
21 lines
1.1 KiB
Bash
|
#!/bin/bash
|
||
|
|
||
|
# ALBUM UPDATE
|
||
|
|
||
|
# Hashes uit filenames.
|
||
|
find . -name '*#*' -exec rename -v "s/#//" {} \;
|
||
|
|
||
|
# Orientatie-tags goedzetten.
|
||
|
find public/assets/borrel/april-2015/ -type f -exec exiftool -n -Orientation=1 "{}" \;
|
||
|
find public/assets/Eetpartijtjes/ruwinterbbq/ -type f -exec exiftool -n -Orientation=1 "{}" \;
|
||
|
find public/assets/Eetpartijtjes/Tapasavond-oktober-2011/ -type f -exec exiftool -n -Orientation=1 "{}" \;
|
||
|
find public/assets/Eetpartijtjes/Verjaardag-IV-bij-Wally/ -type f -exec exiftool -n -Orientation=1 "{}" \;
|
||
|
find public/assets/Uitstapjes/Final-Symphony-Wuppertal-2013-05-11/ -type f -exec exiftool -n -Orientation=1 "{}" \;
|
||
|
find public/assets/Universiteit/Oude-sneeuwfoto\'s/ -type f -exec exiftool -n -Orientation=1 "{}" \;
|
||
|
find public/assets/Weekenden/Susteren-2012 -type f -exec exiftool -n -Orientation=1 "{}" \;
|
||
|
find public/assets/Weekenden/Susteren-2013 -type f -exec exiftool -n -Orientation=1 "{}" \;
|
||
|
find public/assets/Weekenden/Wijhe-2016/ -type f -exec exiftool -n -Orientation=1 "{}" \;
|
||
|
|
||
|
# Remove backup files.
|
||
|
find public/assets/ -type f -name '*_original' -delete
|