Created
November 22, 2021 06:56
-
-
Save seathief/c2a1a7fc708c1286a1b51330036a6b37 to your computer and use it in GitHub Desktop.
sort json array by key in jq
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
# ref: https://stackoverflow.com/questions/30331504/how-to-sort-a-json-file-by-keys-and-values-of-those-keys-in-jq | |
[ | |
{ | |
"Date": "2011-04-01", | |
"AnswerCount": "3913" | |
}, | |
{ | |
"Date": "2010-04-02", | |
"AnswerCount": "2995" | |
} | |
] | |
jq '.|=sort_by(.Date)' calendar.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment