From 759c95e445ad33416bc8b692ce4b7fd5d8c7b522 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 27 Sep 2021 03:02:59 +0000 Subject: Copy CSVs to web directory from snapshot.sh --- snapshot.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/snapshot.sh b/snapshot.sh index 6dc44fb..94526e2 100755 --- a/snapshot.sh +++ b/snapshot.sh @@ -1,6 +1,11 @@ #!/bin/sh -set -e -u +set -eu ts=$(date +'%Y.%m.%d.%H.%M') gzip -c -9 < "$1/torus.dat" > "$2/torus.dat.$ts.gz" $(dirname "$0")/meta < "$1/torus.dat" | gzip -c -9 > "$2/torus.csv.$ts.gz" + +if [ $# -gt 2 ]; then + cp "$2/torus.csv.$ts.gz" "$3" + echo "torus.csv.$ts.gz" > "$3/LATEST" +fi -- cgit 1.4.1