Answers for "linux search recursively for text in file"

3

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
0

find file with text recursively

grep --include=*.{c,h} -rnw '/path/to/somewhere/' -e "pattern"
Posted by: Guest on May-19-2021

Code answers related to "linux search recursively for text in file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language