mirror of
https://github.com/reddit-archive/reddit.git
synced 2026-01-23 13:58:09 -05:00
15 lines
251 B
Bash
Executable File
15 lines
251 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x -e
|
|
|
|
RELS=savehide vote_account_link inbox_account_comment inbox_account_message moderatorinbox
|
|
THINGS=link comment message
|
|
|
|
for rel in $RELS; do
|
|
./dump-rel.sh $rel
|
|
done
|
|
|
|
for thing in $THINGS; do
|
|
./dump-thing.sh $thing
|
|
done
|