diff options
Diffstat (limited to '')
-rwxr-xr-x | snapshot.sh | 7 |
1 files changed, 6 insertions, 1 deletions
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 |