Answers for "linux search for a given string in all files recursively"

3

command line how to find all files that have a string

grep -rnw '/path/to/somewhere/' -e 'pattern'
Posted by: Guest on January-23-2020
4

search for filename recursively linux

find . -name "foo*"
Posted by: Guest on November-29-2020
1

linux find text in files recursively -include

# look for airflow Variable usage recursively in it's homepath
# include only python and sql files in the search
grep --include=\*.{py,sql} -rnw /home/airflow -e 'Variable'

# shows how to use exclude... it'll skip data or log files
grep --exclude=\*.{data,log} -rnw . -e 'Variable'
Posted by: Guest on July-30-2021
4

linux search for a given string in all files recursively

$ grep -r "String to be searched goes here" *
Posted by: Guest on September-29-2020

Code answers related to "linux search for a given string in all files recursively"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language