我想搜索云代工事件cf事件并在每个页面中设置更多事件,如:
cf curl /v2/events?order-direction=asc&page=2&q=type:audit.service_binding.create&results-per-page=**100**
但它也报告:
root@boshcli:~/bin# cf curl /v2/events?order-direction=asc&page=2&q=type:audit.service_binding.create&results-per-page=50
[1] 12215
[2] 12216
[3] 12217
**results-per-page=50: command not found**
[2]- Done page=2
[3]+ Done q=type:audit.service_binding.create
所以我每页只能使用50个。
有谁知道为什么?
非常感谢! :)
答案 0 :(得分:1)
由于您没有在引号中包含url或转义&符号,因此shell会解释这些符号并将查询参数作为单独的命令执行。
尝试:
cf curl "/v2/events?order-direction=asc&page=2&q=type:audit.service_binding.create&results-per-page=50"