Files
reddit/scripts/migrate/dump-all.sh
Neil Williams 68291521b5 Move query_cache scripts to a more general "migrate" directory.
Not just for the query cache anymore!
2012-12-04 11:41:24 -08:00

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