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
You can do it by this way also :
for filename in *; do mongoimport --db --collection --file $filename; done