Answers for "find string in files"

5

find string in file windows

findstr /spin /c:"string" [files]
The parameters have the following meanings:

S = recursive Subfolders
P = skip non-Printable characters
I = case Insensitive
N = print line Numbers
And the string to search for is the bit you put in quotes after /c:
Posted by: Guest on October-14-2020

Browse Popular Code Answers by Language