#jq コマンドで特定の文字列を含むオブジェクトを検索する例


$ echo '{"title":"abc"}' | jq 'select(.["title"] | contains("a"))

{
  "title": "abc"

}

Original by Github issue