Files
developerbedoya.net/content/posts/find-text-in-files-on-linux.md

488 B

title, date, draft, tags
title date draft tags
Find Text in Files on Linux 2022-12-24T14:40:55-03:00 false
linux

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.