diff options
Diffstat (limited to 'go.sh')
-rwxr-xr-x | go.sh | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/go.sh b/go.sh index 39f3779..169d025 100755 --- a/go.sh +++ b/go.sh @@ -1,13 +1,19 @@ -#!/bin/sh +#!/bin/bash -set -ex +set -e + +if [[ "$1" = "" ]]; then + echo missing name + exit +fi -test -f graph.db && rm graph.db -test -f filtered.list && rm filtered.list test -d out && rm -r out + +set -x python3 1_graph.py conf_$1.py python3 2_filter.py conf_$1.py -# python3 3_archive.py conf_$1.py -# echo uploading to memorial -# rsync -r -e 'ssh -p23' --progress out/ memorial:fediverse/$1/ -# python3 4_delete.py conf_$1.py +python3 3_archive.py conf_$1.py +rsync -r -e 'ssh -p23' --progress out/file/ memorial:fediverse/$1/file/ +rsync -r -e 'ssh -p23' --progress --ignore-existing out/note/ memorial:fediverse/$1/note/ +rsync -r -e 'ssh -p23' --progress out/user/ memorial:fediverse/$1/user/ +python3 4_delete.py conf_$1.py |