Skip to content

Instantly share code, notes, and snippets.

@sytranvn
Created October 1, 2020 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sytranvn/44e43288c7268d96742e901a9606ed3f to your computer and use it in GitHub Desktop.
Save sytranvn/44e43288c7268d96742e901a9606ed3f to your computer and use it in GitHub Desktop.
Minify json to 1 line
#!/usr/bin/env bash
# by Jamie Tanna
python -c $'import json\nimport sys\nwith open(sys.argv[1], "r") as f: print(json.dumps(json.load(f)))' $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment