Grep & Regex & Find strings
Grep To find Files and Strings
grep -inr password
i is for case insensitivity
n is for line number
r is for recursively
this command will recursively search for the keyword password Grep to find strings using Regex

Egrep to do Advanced Regex
Find Command
Last updated