Skip to content

Instantly share code, notes, and snippets.

@kany
Created February 12, 2019 11:50
Show Gist options
  • Save kany/ced4adf38e720cb3242b20b65b95e3eb to your computer and use it in GitHub Desktop.
Save kany/ced4adf38e720cb3242b20b65b95e3eb to your computer and use it in GitHub Desktop.
Formatting XML or JSON
# resource - http://richardlog.com/post/12743073497/pretty-printing-json-and-xml-on-mac-osx
# Formatting XML
cat unformatted.xml | xmllint --format - > formatted.xml
# Formatting JSON
cat unformatted.json | python -m json.tool > formatted.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment