Grep Ruby's NEWS/NEWS.md file for text and show me what version it's mentioned in:
% git tag | grep '^v[123]_[0-9]_0$' | xargs -n1 sh -c 'printf "$1:NEWS.md\n$1:NEWS\n" | git cat-file --batch | grep -i "Array.filter" | sed -e "s@^@$1: @"' -
v2_6_0: * Array#filter is a new alias for Array#select. [Feature #13784]
v2_6_0: * Array#filter! is a new alias for Array#select!. [Feature #13784]
Run a command with the same environment values as another process: