Created
December 27, 2014 15:12
-
-
Save kaz-tk/2fd6bc8d0383c199241a to your computer and use it in GitHub Desktop.
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
$ cat test.json | |
{ | |
"name1":"aaa", | |
"name1":"bbb", | |
"name2":"aaa", | |
"name3":"aaa", | |
"name4":"aaa" | |
} | |
$ python -m json.tool ./test.json | |
{ | |
"name1": "bbb", | |
"name2": "aaa", | |
"name3": "aaa", | |
"name4": "aaa" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment