Created
March 5, 2021 07:09
-
-
Save ProximaB/8c3d8acdf4111c85dc42fe64af1f491b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> foo=$(cat <<EOF | |
{ | |
"Items": | |
[ | |
{ | |
"title": "A Midsummer Night's Dream", | |
"tags":[ | |
"comedy", | |
"shakespeare", | |
"play" | |
] | |
},{ | |
"title": "A Tale of Two Cities", | |
"tags":[ | |
"french", | |
"revolution", | |
"london" | |
] | |
} | |
] | |
} | |
EOF | |
) | |
> echo $foo | jq | |
{ | |
"Items": | |
[ | |
{ | |
"title": "A Midsummer Night's Dream", | |
"tags":[ | |
"comedy", | |
"shakespeare", | |
"play" | |
] | |
},{ | |
"title": "A Tale of Two Cities", | |
"tags":[ | |
"french", | |
"revolution", | |
"london" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment