mirror of
https://git.mia.jetzt/scrubber
synced 2024-11-21 13:07:25 -07:00
13 lines
340 B
Bash
Executable file
13 lines
340 B
Bash
Executable file
#!/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
|