Grep - Powershell style

grep

Use this powershell command to find text in files, grep style:

 gci -r | sls 'some text'

or

 Get-ChildItem -Recurse | Select-String 'some text'