repo.or.cz
/
reddit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update README for archival
[reddit.git]
/
scripts
/
migrate
/
dump-all.sh
blob
7e3a75129acdd1b80e120b12d7b53753d3936cf8
1
#!/bin/bash
2
3
set -x -e
4
5
RELS
=
savehide vote_account_link inbox_account_comment inbox_account_message moderatorinbox
6
THINGS
=
link comment message
7
8
for
rel
in
$RELS
;
do
9
.
/
dump-rel.sh
$rel
10
done
11
12
for
thing
in
$THINGS
;
do
13
.
/
dump-thing.sh
$thing
14
done