Update README for archival
[reddit.git] / scripts / migrate / dump-all.sh
blob7e3a75129acdd1b80e120b12d7b53753d3936cf8
1 #!/bin/bash
3 set -x -e
5 RELS=savehide vote_account_link inbox_account_comment inbox_account_message moderatorinbox
6 THINGS=link comment message
8 for rel in $RELS; do
9 ./dump-rel.sh $rel
10 done
12 for thing in $THINGS; do
13 ./dump-thing.sh $thing
14 done