if echo -e "Hello\nWorld" | grep -q "ell" ; then
echo "Hello was matched"
else
echo "World was matched"
fi

> Hello was matched