gpt4 book ai didi

json - 如何将两个简单的 JSON 数组与 JQ 合并在一起

转载 作者:行者123 更新时间:2023-12-05 00:52:09 32 4
gpt4 key购买 nike

我想将数组合并在一起。

$ cat file.json
[1,2,3,4]
[5,6,7,8]
$ # command
[1,2,3,4,5,6,7,8]

#command应该是什么?

最佳答案

另一种简单的方法,只使用 add:

jq -s 'add' input.json

[Documentation]


  • JqPlay Demo
  • 本地 shell 示例

    $ cat input.json
    [1,2,3,4]
    [5,6,7,8]
    $
    $ jq -s 'add' input.json
    [
    1,
    2,
    3,
    4,
    5,
    6,
    7,
    8
    ]
    $

关于json - 如何将两个简单的 JSON 数组与 JQ 合并在一起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70681151/

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