Created
July 27, 2025 08:40
-
-
Save sambatyon/58664a30e3d83431880a011de66574aa to your computer and use it in GitHub Desktop.
pretty print json
This file contains hidden or 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
| echo '{"foo": "lorem", "bar": "ipsum"}' | python -m json.tool # version >= 2.5 | |
| echo '{"foo": "lorem", "bar": "ipsum"}' | python -c'from simplejson.tool import main; main()' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment