grep
Find patterns in files using regular expressions.
Usage
Find all files containing specific string
This can be done recursively using grep -Ril "string" / where,
Ris for recursiveiis for ignore caselis for only the file will be shown and not the content./is for starting at the root of the machine
Last updated