0

如何将 db.xxx.find() 的输出保存到平面文件中。作为stackoverflow中的快速搜索,大多数答案都是建议使用

mongo 127.0.0.1/db --eval "var c = db.collection.find(); while(c.hasNext()) {printjson(c.next())}" >> test.txt

或者

mongo 127.0.0.1/db script.js >> test.txt

但我需要在执行 find() 之前进行身份验证和其他工作。我需要在 mongo 控制台内完成。有什么建议么?

4

0 回答 0