Command

grep

3 useful snippets found.

How to grep case insensitive

grep -i [string] [file]

How to exclude lines with grep

grep -v [exclude_string] [file]

How to grep recursively in a directory

grep -r [search_string] .