I am new to mongodb and want to know about importing a json file from one server to another. I tried the following command mongoimport -d tes
mongodb
json
mongoimport -d tes
Linux:
> cat one.json two.json > three.json > mongoimport --db foo --collection baz --file three.json"
Or, all files in the folder :
> cat *.json > big.json > mongoimport --db foo --collection baz --file "big.json"