scripts/hugin-gopro-fusion/equalize_all_in_folder.sh

10 lines
235 B
Bash
Raw Normal View History

2023-09-11 09:07:56 +02:00
#!/bin/bash
2023-11-02 18:38:08 +01:00
cd /home/poule/encrypted/stockage-syncable/photos/imageries/gopro/hugin/to_equalize
2023-09-11 09:07:56 +02:00
for file in *
do
2023-11-02 18:38:08 +01:00
magick "$file" -equalize "/home/poule/encrypted/stockage-syncable/photos/imageries/gopro/hugin/equalized/$file"
2023-11-02 13:03:46 +01:00
done