Answers for "find string in file windows"

4

find string in file windows

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

s = recursive
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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language