grep

grep#

Search text.

$ grep PATTERN file
$ grep -i PATTERN file
$ grep -n PATTERN file
$ grep -RIn PATTERN dir/
$ grep -E 'a|b' file
$ grep -P 'lookbehind' file
$ grep -v PATTERN file