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
htop
CLIAn interactive process viewer and system monitor.
Filter processes by name~90% est.
htop -p $(pgrep -d',' node)system2 recipes
miller
CLILike awk/sed/cut/join/sort for name-indexed data (CSV, JSON, TSV).
Filter CSV rows by condition~97% est.
mlr --csv filter '$age > 30' data.csvdata3 recipes
csvkit
CLIA suite of utilities for converting and working with CSV files.
data3 recipes