可以通过以下步骤实现:
sudo apt-get install jq
existing_array.json
,内容如下:[
"item1",
"item2",
"item3"
]
new_array.json
,内容如下:[
"new_item1",
"new_item2",
"new_item3"
]
jq '. + input' existing_array.json new_array.json > combined_array.json
解释:
.
表示当前数组,+
表示连接操作符。input
表示输入的新数组数据。existing_array.json
是现有数组的JSON文件。new_array.json
是要添加的新数组数据的JSON文件。combined_array.json
是保存结果的新JSON文件。combined_array.json
文件中包含了将新数组数据添加到现有数组后的结果。这种方法可以用于将任意数量的数组数据添加到现有数组中,并且可以适用于任何类型的数组数据。
领取专属 10元无门槛券
手把手带您无忧上云