#/bin/sh
# Because wallets.py carefully re-sets the timestamp for the generated index.html files to be the same as the contents.json, 
# there is no way for rsync to recognise that new pages have been generated. So I use this scp script to update them
# on the server after running wallets.py on my home machine
# 2020-01-01 Philip Sargent

date >scp-log.txt
start=$SECONDS

#for i in 2014 2015 2015.old 2016 2017 2018 2019; do 
for i in  2019; do 
echo $i
echo $i >>scp-log.txt
 cd $i
 for j in `ls -d ${i:0:4}*` ; do
   echo $i/$j
  scp $j/index.html expo@expo.survex.com:expofiles/surveyscans/$i/$j >>../scp-log.txt
 done
 cd ..
duration=$(( SECONDS - start ))
echo $duration seconds so far
done

duration=$(( SECONDS - start ))
echo $duration seconds overall