python 이 깔려있다면 console 창에서 JSON 을 보기 좋은 형태로 print 할 수 있다.
Python Version 은 2.6 이상 이어야 한다.
아래의 명령어를 입력하면 보기 좋은 형태로 바뀐다.
echo 'YourJSONHere' | python3 -m json.tool
{ "Resources" : { "HelloBucket" : { "Type" : "AWS::S3::Bucket", "Properties" : { "AccessControl" : "PublicRead", "WebsiteConfiguration" : { "IndexDocument" : "index.html", "ErrorDocument" : "error.html" } } } } }
echo '{ "Resources" : { "HelloBucket" : { "Type" : "AWS::S3::Bucket", "Properties" : { "AccessControl" : "PublicRead", "WebsiteConfiguration" : { "IndexDocument" : "index.html", "ErrorDocument" : "error.html" } } } } }' | python3 -m json.tool
결과물은 아래와 같다.
{
"Resources": {
"HelloBucket": {
"Type": "AWS::S3::Bucket",
"Properties": {
"AccessControl": "PublicRead",
"WebsiteConfiguration": {
"IndexDocument": "index.html",
"ErrorDocument": "error.html"
}
}
}
}
}