I want to search for a string in files which end with .asp, .config, and .txt. In other words I want to query asp, web.config, or text files for that particular string.

I found that the /G switch doesn't do the trick.

link|improve this question

53% accept rate
Moderators: if there is a better way to frame the title for this post, please do so. – deostroll Jul 27 '11 at 11:51
1  
feedback

1 Answer

Have you tried

findstr foo *.asp *.config *.txt

or

findstr /S foo *.asp *.config *.txt
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.