如何在Shell脚本中漂亮地打印JSON?

陌路散爱 提交于 2020-08-17 18:27:15

问题:

Is there a (Unix) shell script to format JSON in human-readable form? 是否有(Unix)Shell脚本以易于理解的格式格式化JSON?

Basically, I want it to transform the following: 基本上,我希望它可以转换以下内容:

{ "foo": "lorem", "bar": "ipsum" }

... into something like this: ...变成这样:

{
    "foo": "lorem",
    "bar": "ipsum"
}

解决方案:

参考一: https://stackoom.com/question/1Tb0/如何在Shell脚本中漂亮地打印JSON
参考二: https://oldbug.net/q/1Tb0/How-can-I-pretty-print-JSON-in-a-shell-script
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!