Find patterns in files using regular expressions.
This can be done recursively using grep -Ril "string" / where,
grep -Ril "string" /
R is for recursive
R
i is for ignore case
i
l is for only the file will be shown and not the content.
l
/ is for starting at the root of the machine
/
Last updated 4 years ago