Search Results

3
votes
5answers
434 views

Powershell FINDSTR eqivalent?

What's the DOS FINDSTR eqivalent for powershell? I need to search a bunch of log files for "ERROR" …
6
votes

Powershell FINDSTR eqivalent?

Here's the quick answer gci -r -i *.log | select-string ERROR I found it here …