2022-12-16 11:08:44 +08:00
|
|
|
rm -rf dbexport
|
2022-11-20 12:50:47 +08:00
|
|
|
|
2022-12-17 16:44:24 +08:00
|
|
|
coll=(user soc agenda worker work fund imgsrc txt)
|
2022-11-20 12:50:47 +08:00
|
|
|
|
2022-12-16 11:08:44 +08:00
|
|
|
for c in $coll; do
|
|
|
|
echo exporting ismism.$c to dbexport/$c.json
|
|
|
|
mongoexport --jsonArray -d=ismism -c=$c -o=dbexport/$c.json
|
|
|
|
done
|