Search for a substring inside all files
Search recurisvely
grep -r "substring" .
ignore case distinctions:
grep -ri "substring" .
to only display filenames
grep -r -l "othrif" .
grep -r "substring" .
grep -ri "substring" .
grep -r -l "othrif" .