Files
ismism/cli/dbexport.zsh
2022-12-16 11:08:44 +08:00

9 lines
193 B
Bash

rm -rf dbexport
coll=(user soc agenda worker work fund dat)
for c in $coll; do
echo exporting ismism.$c to dbexport/$c.json
mongoexport --jsonArray -d=ismism -c=$c -o=dbexport/$c.json
done