Windows: Grep for windows

By Eric Downing. Filed in Software, Utilities, Windows  |  
TOP del.icio.us digg

If you don’t have access to a Unix environment on your windows box, you can still search files with findstr. The findstr command will allow you to search files close to the same way as grep.

findstr /S "search string"

will recursively find your string in the current directory and subdirectories.

There are more options that you can find if you run the following command:

findstr /?

will show you the help message.

Tags: ,

Leave a Reply