我正在尝试使用以下命令将多个JSON文档插入到mongoDB中
for (i=0; 1<1000000; i++){ mongoimport -d test -c questions TWDS1E1.txt}
TWDS1E1.txt是我们在C:\Program Files\MongoDB\Server\3.0\bin
但我收到Unexpected identifier
错误!
我也试过了db.collections.insert( TWDS1E1.txt )
,但获得了TWDS1E1 is not defined error
我做错了什么以及如何为shell插入多个文档?
Mant谢谢