Answers for "windows search for text in all files in folder"

8

find text in folder

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

search all files for text in directory

findstr /s /i .TextToSearchForWithWildcards. *.txt

/s --> Search all subfolders as well
/i --> Not case sensitive
Posted by: Guest on January-03-2022

Code answers related to "windows search for text in all files in folder"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language