Grep - Powershell style
grep January 09, 2022Use this powershell command to find text in files, grep style:
gci -r | sls 'some text'
or
Get-ChildItem -Recurse | Select-String 'some text'
Use this powershell command to find text in files, grep style:
gci -r | sls 'some text'
or
Get-ChildItem -Recurse | Select-String 'some text'