https://www.garron.me/en/bits/find-string-recursively-in-all-files-linux-mac-grep.html
1 |
grep -r "string" . |
If you want to search for the string without caring about upper or lower case.
1 |
grep -ri "string" . |
https://www.garron.me/en/bits/find-string-recursively-in-all-files-linux-mac-grep.html
1 |
grep -r "string" . |
If you want to search for the string without caring about upper or lower case.
1 |
grep -ri "string" . |