From c5e9323eed9e824c12c09e1eb6707e9102fc5693 Mon Sep 17 00:00:00 2001 From: "Philip Sargent (muscogee)" Date: Wed, 1 Jan 2020 18:52:39 +0000 Subject: [PATCH] second-order hack --- noinfo/allwallets.sh | 9 +++++++++ noinfo/scp-index-pages.sh | 25 +++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 noinfo/allwallets.sh create mode 100644 noinfo/scp-index-pages.sh diff --git a/noinfo/allwallets.sh b/noinfo/allwallets.sh new file mode 100644 index 000000000..3c3356f47 --- /dev/null +++ b/noinfo/allwallets.sh @@ -0,0 +1,9 @@ +#/bin/sh + +for i in 2014 2015 2015.old 2016 2017 2018 2019; do + echo $i + cp -p wallets.py $i + cd $i + python wallets.py /mnt/d/CUCC-Expo/Loser + cd .. +done \ No newline at end of file diff --git a/noinfo/scp-index-pages.sh b/noinfo/scp-index-pages.sh new file mode 100644 index 000000000..bb34cc1f9 --- /dev/null +++ b/noinfo/scp-index-pages.sh @@ -0,0 +1,25 @@ +#/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 \ No newline at end of file