Computer scienceSystem administration and DevOpsCommand lineText processing

Sorting and transforming JSON with jq

Revisiting "Working with the keys"

Report a typo

Match the outputs of the following commands in it_club.json.

Match the items from left and right columns
jq -r 'keys | last' it_club.json
jq 'keys | sort | reverse | last' it_club.json
jq '.club_name' it_club.json
jq '.members | sort_by(.registration_number) | reverse | first | .name' it_club.json
"club_name"
member
"Jane Smith"
"IT Club"
___

Create a free account to access the full topic