I want to search all files in a certain directory for occurrences of statements such as
Load frmXYZ
I am on Windows 7, using the f
f
Use the /c option:
/c
findstr /n /c:"Load frm" *.*
From the help (findstr /?):
findstr /?
/C:string Uses specified string as a literal search string.