tags:

views:

32

answers:

2

Hi all:

I remember windows getting a command to search a pattern inside a text. Does there anyone know that?

Thanks.

A: 

I think you might be looking for FINDSTR. It's available in Windows XP and later. Type

findstr /?

For usage info.

Gene Goykhman
A: 

Even before then, there's the FIND command (goes all the way back to DOS 2.0).

FIND "string" filename

The string needs to be in double quotes.

Carl Smotricz