satnogs-wut/wut-review-staging

15 lines
302 B
Plaintext
Raw Normal View History

#!/bin/bash
2020-01-02 11:53:15 -07:00
# wut-review-staging
# Go through all the images in data/staging and review them.
2020-01-26 17:27:12 -07:00
cd /srv/satnogs/data/staging || exit
for i in *.png
do echo $i
rm ../test/unvetted/*.png
2020-01-02 01:26:08 -07:00
cp -p $i ../test/unvetted/waterfall.png
cd ../..
./satnogs-wut.sh || exit
cd data/staging || exit
done
cd ../..