satnogs-wut/wut-review-staging

15 lines
302 B
Bash
Executable File

#!/bin/bash
# wut-review-staging
# Go through all the images in data/staging and review them.
cd /srv/satnogs/data/staging || exit
for i in *.png
do echo $i
rm ../test/unvetted/*.png
cp -p $i ../test/unvetted/waterfall.png
cd ../..
./satnogs-wut.sh || exit
cd data/staging || exit
done
cd ../..