9 lines
200 B
Bash
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
|