我有100多个文件,其中每一行都是一个json。看起来像这样(没有逗号,也没有[]):
{"one":"one","two":{"tree":...}}
{"one":"one","two":{"tree":...}}
...
{"one":"one","two":{"tree":...}}
要使用AWS firehose put-record-batch,文件必须采用以下格式:
[
{
"Data": blob
},
{
"Data": blob
},
...
]
我想将所有这些文件从终端放到AWS Firehose。
我正在寻找一个看起来像这样的shell脚本:
for file in files
do
aws firehose put-record-batch --delivery-stream-name <name> --records file://$file
done
所以有两个问题:
答案 0 :(得分:1)
for file in *.json;
do
jq -s . "${file}" >${file}.tmp && mv ${file}.tmp $file
done
这将读取当前目录中的所有json文件,并将其更改为所需的格式并保存到该文件中。
或者,如果您没有jq
,则这里是使用python's
json模块的另一种方法。
for file in *.json;do
while read line ; do
echo $line | python -m json.tool
done < ${file} |awk 'BEGIN{print "["}{print}END{print "]"}'
done