gpt4 book ai didi

json - jq - 如何过滤不包含的json

转载 作者:行者123 更新时间:2023-12-02 23:58:10 26 4
gpt4 key购买 nike

我有一个 aws 查询,想要在 jq 中进行过滤。我想过滤所有以“latest”结尾的imageTags

到目前为止,我这样做了,但它过滤了包含“最新”的内容,而我想过滤不包含“最新”的内容(或不以“最新”结尾)

aws ecr describe-images --repository-name <repo> --output json | jq '.[]' | jq '.[]' | jq "select ((.imagePushedAt < 14893094695) and (.imageTags[] | contains(\"latest\")))"

谢谢

最佳答案

您可以使用not来反转逻辑

(.imageTags[] | contains(\"latest\") | not)

此外,我想您可以将管道简化为单个 jq 调用。

关于json - jq - 如何过滤不包含的json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42746828/

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