ismism/cli/dbexport.zsh
2022-12-17 16:44:24 +08:00

9 lines
200 B
Bash

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