Answers for "find files with word in folder"

11

find text in folder

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

look word in files command

#In order to look for a word pattern in current files and all subdirs
#just implement following command structure
grep -rn word_to_search .
Posted by: Guest on August-04-2021

Code answers related to "find files with word in folder"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language