gpt4 book ai didi

regex - mongoexport 正则表达式未知选项

转载 作者:可可西里 更新时间:2023-11-01 10:02:50 33 4
gpt4 key购买 nike

mongoexport --db ucc_prod /host:myserver /port:27017 --username user1 --password password1 /query:'{copysheet: {$regex: "/^.*pdf/"}}' /out:copysheets.csv --type=csv --fields svOrderId,svItemId --collection copies

给我错误

2016-09-02T08:17:34.632-0500    error parsing command line options: unknown option "^.*pdf/}}'"

我在这里缺少什么语法?

最佳答案

你可以使用

--query "{ 'copysheet': { '$regex': '^.*pdf', '$options':'' }}"

重点是您应该将数据传递给 query作为 JSON 的参数。

参见 reference :

--query <JSON>, -q <JSON>
Provides a JSON document as a query that optionally limits the documents returned in the export. Specify JSON in strict format.

注意:在不同的系统上,您可能需要将单引号换成双引号。

关于regex - mongoexport 正则表达式未知选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39293769/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com