Skip to content

Instantly share code, notes, and snippets.

@seathief
Created November 22, 2021 06:56
Show Gist options
  • Save seathief/c2a1a7fc708c1286a1b51330036a6b37 to your computer and use it in GitHub Desktop.
Save seathief/c2a1a7fc708c1286a1b51330036a6b37 to your computer and use it in GitHub Desktop.
sort json array by key in jq
# 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