How to retrieve the next key value pair in a json file with jq when I know the previous one
I have the following json file : { "entry1":"", "entry2":"", "entry3":"value3", "entry4":"value4", "entry5":"", "entry6":" ", "entry7":"", "entry8":"false" } I know the key value pair of the entry3 but not the next one (entry4 and value) How can I do ?…