blob: 39f37797837cf8e5195d0db89aae509f1874461a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -ex
test -f graph.db && rm graph.db
test -f filtered.list && rm filtered.list
test -d out && rm -r out
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
|