488 B
488 B
title, date, draft, tags
| title | date | draft | tags | |
|---|---|---|---|---|
| Find Text in Files on Linux | 2022-12-24T14:40:55-03:00 | false |
|
I shamelessly copied from found on stackoverflow.com how to use grep to find a specific text (or regular expression) inside a directory:
grep -rnw '/path/to/somewhere/' -e 'pattern'
And I think that's very useful for coders when trying to find references from a class.