Skip to content

Instantly share code, notes, and snippets.

@oliora
Last active August 1, 2018 10:05
Show Gist options
  • Save oliora/75d063f0cee7d20b45030946981ed062 to your computer and use it in GitHub Desktop.
Save oliora/75d063f0cee7d20b45030946981ed062 to your computer and use it in GitHub Desktop.
one-liner to prettify json
alias pretty-json="python -c 'import json; import sys; json.dump(json.load(open(sys.argv[1], \"r\") if len(sys.argv) > 1 else sys.stdin), sys.stdout, indent=2)'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment