On linux, i actually use jq associated with a curl command.Something like this..
curl <curl expression> | jq
but my pretty json at output got two many lines.I'd like to filter rows, with something like this :
curl <curl expression> | jq | grep myfilter
jq util do not accept to be grepped.How can i do the work ?