Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jfrog rt s "repo/some.pacakge.name*"
给我每个工件的大 json 对象列表。我只想为每个返回一行,理想情况下只为每个返回特定属性(例如名称和版本)。这可能吗?没有在文档中看到任何内容。
您可以通过管道传输结果并对其进行任何操作。一个很好的例子可能是使用 jq。
jfrog rt s "repo/some.pacakge.name*" | jq '.[]|.path + .props[“版本”]' -r
你必须安装 jq
https://stedolan.github.io/jq/