jq
CLILightweight and flexible command-line JSON processor.
Filter an array by a conditionVerified macOS · Linux
jq -c '[.[] | select(.active == true) | .name]' users.json+1 more matching recipetext-processing7 recipes · 6 verified
awk
CLIPattern-scanning and text-processing language.
Filter rows by condition~97% est.
awk '$3 > 100' data.txttext-processing4 recipes