Remove sections of a string, filtering out all that contain "RT"
cat tweets.json | jq '.[].text | select(contains("RT") | not)'
Remove sections of a string, filtering out all that contain "RT"
cat tweets.json | jq '.[].text | select(contains("RT") | not)'