我正在尝试使用mongo shell将mongo查询的结果发送到文件。我曾使用过以下命令。
C:\>mongodb\bin\mongo localhost/mydb –eval "db.docs.count()" >> counttest.txt
实际上我的文本文件是用这个堆栈跟踪创建的。
2016-05-13T12:35:51.485+0530 I CONTROL [main] Hotfix KB2731284 or later update is not installed, will zero-out data files
MongoDB shell version: 3.2.1
connecting to: localhost/mydb
loading file: –eval
2016-05-13T12:35:51.541+0530 E - [main] file [–eval] doesn't exist
failed to load: –eval
使用--eval
,我遇到了这个错误:
Error parsing command line: unrecognised option '-ΓÇôeval' try 'mongo --help' for more information
有人可以帮我解决这个问题吗?