使用shell脚本格式化JSON文件

时间:2017-04-11 13:35:02

标签: json shell formatting

我们需要使用shell脚本格式化JSON文件。

INPUT

    {
  "version": ["sessionrestore",1], "windows": [{"tabs": [{"entries": [{"title": "news.ORF.at","docshellID": 298,"docIdentifier": 10062,"persist": true},{"title": "news.at","docshellID": 288,"docIdentifier": 00062,"persist": false}]}
    }
}

预期产出

    {
"version": [
    "sessionrestore",1
  ],
  "windows": [
    {
      "tabs": [
        {
          "entries": [
            {title : news.ORF.at , docshellID : 298, docIdentifier : 10062 ,persist : true},
            {title: news.at,docshellID: 288,docIdentifier: 00062,persist: false}
            ]

        }
    }
} 

任何人都可以帮助我们使用shell脚本获得所需的输出吗? 如果有任何其他信息,请与我们联系

0 个答案:

没有答案