MongoDB Query 导出到文件
备忘
要看一个query出来的大量信息怎么办
先要有一个js文件,来避免双引号之间的冲突,比如
var cursor = db.collection.find();
while(cursor.hasNext()) {
printjson(cursor.next());
}
然后
mongo 127.0.0.1/db script.js >> output.txt
备忘
要看一个query出来的大量信息怎么办
先要有一个js文件,来避免双引号之间的冲突,比如
var cursor = db.collection.find();
while(cursor.hasNext()) {
printjson(cursor.next());
}
然后
mongo 127.0.0.1/db script.js >> output.txt