How to do grep in windows —08 May 2008
findstr
in windows works similarly to grep
in unix. For example you can do this:
netstat -a | findstr 8000
Another command find
is also similar, with slightly different syntax and powers. I don’t remember which is which, but with one of them you can use regular expressions.