我有许多json文件(下面给出的示例)以压缩格式存在于S3文件夹(例如s3:// data /)中,如foo.json.gz,foo1.json.gz,foo2.json.gz。其中一个类别(例如1010)被错误地分配,需要将所有文件更改为1020.我们如何进行此更改并使用修改后的内容重新打包S3中的这些文件?
foo.json
{
"flower": "lilly",
"animal": "cat",
"category": "1010"
}
{
"flower": "rose",
"animal": "dog",
"category": "1000"
}
{
"flower": "daisy",
"animal": "cat",
"category": "1010"
}
答案 0 :(得分:1)
最简单的&有效的方法是:
aws cli
)gunzip
)php
)aws cli
)