Does anyone know if there is a version of grep for vista x64?

link|improve this question
feedback

migrated from stackoverflow.com Sep 13 '09 at 18:43

This question came from our site for professional and enthusiast programmers.

6 Answers

Sure, it works fine with cygwin.

link|improve this answer
feedback

A quick search brings those questions/answers :

And those will point you to tools like PowerGREP, the Findstr tool that's bundled with windows, or cygwin -- or others ^^

link|improve this answer
feedback

grep.exe from UnxUtils works fine with WoW64.

link|improve this answer
feedback

try http://www.wingrep.com/

link|improve this answer
feedback

I'd suggest considering the option of stepping slightly sideways:

You can do the equivalent quite easily using powershell by pipelining a get-childitem into a select-string.

Powershell is an impressive tool for playing with windows systems.

link|improve this answer
feedback

In powershell:

findstr -s "keyword|regex" *.txt

This is just an example of one grep feature. There are other ways to do much more complex things as well.

link|improve this answer
findstr also works in Command Prompt – RedGrittyBrick Sep 15 '11 at 9:45
feedback

Your Answer

 
or
required, but never shown