0

bin]$ ./mongoexport --host xxxxxxxxx-2.xxxxxx-mongo.123.xxxxdbdns.com -d mydatabase -c my_locations -f "_id" --csv>locs.csv不起作用。

它给了我解析命令行时出错:位置选项太多。请帮忙

4

1 回答 1

0

我相信您应该尝试以下方法,它应该可以工作:

$ mongoexport --host xxxxxxxxx-2.xxxxxx-mongo.123.xxxxdbdns.com -d mydatabase -c my_locations -f _id --type=csv --out locs.csv

于 2017-05-08T17:18:58.720 回答