scripts/hugin-gopro-fusion/equalize_all_in_folder.sh

10 lines
215 B
Bash
Raw Normal View History

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