Skip to content

Recursively search for a string inside the file contents of a given path

Linux: grep -rin "string goes here" ./

findstr /S /N /C:"string goes here" ".\*.*"
Select-String ".\*" -Pattern "string goes here" -SimpleMatch