grep --help
grep -lrnw '[/path/to/files]' -e '[text]'
grep -B 10 -A 10 -i 'john doe' ./users.json
echo 'My name is John Doe!' | grep --color -i 'john doe'
cat << EOF | grep -i --line-buffered doe
John Doe
Jane Doe
Richard Roe
EOF
#
docker logs [container-name] 2> >(grep '[text]')
#
docker logs [container-name] 2>&1 | grep '[text]'